From 3be2de43b923dc13d9302c7fd50f5e8850d5ce8f Mon Sep 17 00:00:00 2001 From: N6REJ Date: Thu, 26 Sep 2024 23:04:57 +0000 Subject: [PATCH 1/4] =?UTF-8?q?=F0=9F=94=84=20synced=20local=20'.github/wo?= =?UTF-8?q?rkflows/create-labels.yml'=20with=20remote=20'.github/workflows?= =?UTF-8?q?/create-labels.yml'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/create-labels.yml | 42 ++++++++++++++--------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/create-labels.yml b/.github/workflows/create-labels.yml index 304331a..1731639 100644 --- a/.github/workflows/create-labels.yml +++ b/.github/workflows/create-labels.yml @@ -1,21 +1,21 @@ -name: Create labels - -on: - push: - branches: - - 'main' - paths: - - '.github/labels.yml' - - '.github/workflows/create-labels.yml' - -jobs: - labeler: - runs-on: ubuntu-latest - steps: - - - name: Checkout - uses: actions/checkout@v4.1.7 - - - name: Run Labeler - if: success() - uses: crazy-max/ghaction-github-labeler@v5.0.0 +name: Create labels + +on: + push: + branches: + - 'main' + paths: + - '.github/labels.yml' + - '.github/workflows/create-labels.yml' + +jobs: + labeler: + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v4.2.0 + - + name: Run Labeler + if: success() + uses: crazy-max/ghaction-github-labeler@v5.0.0 From 533cee4a43a64df8e90ad6037508cb95056fbeff Mon Sep 17 00:00:00 2001 From: N6REJ Date: Thu, 26 Sep 2024 23:04:57 +0000 Subject: [PATCH 2/4] =?UTF-8?q?=F0=9F=94=84=20synced=20local=20'.github/wo?= =?UTF-8?q?rkflows/release.yml'=20with=20remote=20'.github/workflows/relea?= =?UTF-8?q?se.yml'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 80 +++++++++++++++++------------------ 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 52ff6eb..b6082a5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,40 +1,40 @@ -# description of this workflow, can be anything you want -name: Package and release - -# we need to let GitHub know _when_ we want to release, typically only when we create a new tag. -# this will target only tags, and not all pushes to the main branch. -# this part can be heavily customized to your liking, like targeting only tags that match a certain word, -# other branches or even pull requests. -on: - push: - tags: - - '**' - -# a workflow is built up as jobs, and within these jobs are steps -jobs: - - # "release" is a job, you can name it anything you want - release: - - # we can run our steps on pretty much anything, but the "ubuntu-latest" image is a safe bet - runs-on: ubuntu-latest - - # specify the environment variables used by the packager, matching the secrets from the project on GitHub - env: - CF_API_KEY: ${{ secrets.CF_API_KEY }} - WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }} - GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }} # "GITHUB_TOKEN" is a secret always provided to the workflow - # for your own token, the name cannot start with "GITHUB_" - - # "steps" holds a list of all the steps needed to package and release our AddOn - steps: - - # we first have to clone the AddOn project, this is a required step - - name: Clone project - uses: actions/checkout@v4.1.7 - with: - fetch-depth: 0 # gets git history for changelogs - - # once cloned, we just run the GitHub Action for the packager project - - name: WoW Packager - uses: BigWigsMods/packager@v2 +# description of this workflow, can be anything you want +name: Package and release + +# we need to let GitHub know _when_ we want to release, typically only when we create a new tag. +# this will target only tags, and not all pushes to the main branch. +# this part can be heavily customized to your liking, like targeting only tags that match a certain word, +# other branches or even pull requests. +on: + push: + tags: + - '**' + +# a workflow is built up as jobs, and within these jobs are steps +jobs: + + # "release" is a job, you can name it anything you want + release: + + # we can run our steps on pretty much anything, but the "ubuntu-latest" image is a safe bet + runs-on: ubuntu-latest + + # specify the environment variables used by the packager, matching the secrets from the project on GitHub + env: + CF_API_KEY: ${{ secrets.CF_API_KEY }} + WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }} + GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }} # "GITHUB_TOKEN" is a secret always provided to the workflow + # for your own token, the name cannot start with "GITHUB_" + + # "steps" holds a list of all the steps needed to package and release our AddOn + steps: + + # we first have to clone the AddOn project, this is a required step + - name: Clone project + uses: actions/checkout@v4.2.0 + with: + fetch-depth: 0 # gets git history for changelogs + + # once cloned, we just run the GitHub Action for the packager project + - name: WoW Packager + uses: BigWigsMods/packager@v2.1.0 From 63feefa9af3fa79858bfc9bc2b9b18589cd586da Mon Sep 17 00:00:00 2001 From: N6REJ Date: Thu, 26 Sep 2024 23:04:57 +0000 Subject: [PATCH 3/4] =?UTF-8?q?=F0=9F=94=84=20synced=20local=20'.github/wo?= =?UTF-8?q?rkflows/auto-merge.yml'=20with=20remote=20'.github/workflows/au?= =?UTF-8?q?to-merge.yml'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/auto-merge.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml index aed4d6f..893b7fe 100644 --- a/.github/workflows/auto-merge.yml +++ b/.github/workflows/auto-merge.yml @@ -1,14 +1,14 @@ -name: auto-merge - -on: - pull_request: - -jobs: - auto-merge: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4.1.7 - - uses: ahmadnassri/action-dependabot-auto-merge@v2.6 - with: - target: minor - github-token: ${{ secrets.mytoken }} +name: auto-merge + +on: + pull_request: + +jobs: + auto-merge: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4.2.0 + - uses: ahmadnassri/action-dependabot-auto-merge@v2.6 + with: + target: minor + github-token: ${{ secrets.mytoken }} From 3cf063c56ac3357c36385884083629d39eb28588 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Sep 2024 13:27:17 +0000 Subject: [PATCH 4/4] Bump BigWigsMods/packager from 2.1.0 to 2.3.1 Bumps [BigWigsMods/packager](https://github.com/bigwigsmods/packager) from 2.1.0 to 2.3.1. - [Release notes](https://github.com/bigwigsmods/packager/releases) - [Commits](https://github.com/bigwigsmods/packager/compare/v2.1.0...v2.3.1) --- updated-dependencies: - dependency-name: BigWigsMods/packager dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b6082a5..21ddce2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,4 +37,4 @@ jobs: # once cloned, we just run the GitHub Action for the packager project - name: WoW Packager - uses: BigWigsMods/packager@v2.1.0 + uses: BigWigsMods/packager@v2.3.1