From 0b8409be655b3cbd8e946ab74c6c0b90f9cf36a0 Mon Sep 17 00:00:00 2001 From: Andrew Spiering Date: Tue, 9 Nov 2021 15:11:47 -0800 Subject: [PATCH 1/3] chore: Adding autoupdate workflow to make life easy --- .github/workflows/autoupdate.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/autoupdate.yaml diff --git a/.github/workflows/autoupdate.yaml b/.github/workflows/autoupdate.yaml new file mode 100644 index 0000000000..2e92f3f1c7 --- /dev/null +++ b/.github/workflows/autoupdate.yaml @@ -0,0 +1,16 @@ +name: autoupdate +on: + push: + branches: + - develop + - 'releases/**' +jobs: + autoupdate: + name: autoupdate + runs-on: ubuntu-18.04 + steps: + - uses: docker://chinthakagodawita/autoupdate-action-unstable:v1 + env: + GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" + PR_FILTER: "protected" + PR_READY_STATE: "ready_for_review" \ No newline at end of file From 2ddff4af73a959fc030a4aa7a12224f1e940da58 Mon Sep 17 00:00:00 2001 From: Andrew Spiering Date: Tue, 9 Nov 2021 16:44:50 -0800 Subject: [PATCH 2/3] chore: PR Feedback --- .github/workflows/autoupdate.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/autoupdate.yaml b/.github/workflows/autoupdate.yaml index 2e92f3f1c7..764bcd00c2 100644 --- a/.github/workflows/autoupdate.yaml +++ b/.github/workflows/autoupdate.yaml @@ -1,4 +1,4 @@ -name: autoupdate +name: auto-update on: push: branches: @@ -6,10 +6,10 @@ on: - 'releases/**' jobs: autoupdate: - name: autoupdate - runs-on: ubuntu-18.04 + name: auto-update + runs-on: ubuntu-latest steps: - - uses: docker://chinthakagodawita/autoupdate-action-unstable:v1 + - uses: docker://chinthakagodawita/autoupdate-action:v1 env: GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" PR_FILTER: "protected" From c095363f69dbdcfbf20a8ace67b042c468e4e40c Mon Sep 17 00:00:00 2001 From: Andrew Spiering Date: Tue, 9 Nov 2021 21:57:04 -0800 Subject: [PATCH 3/3] proper branch name --- .github/workflows/autoupdate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/autoupdate.yaml b/.github/workflows/autoupdate.yaml index 764bcd00c2..8a3e5d2cca 100644 --- a/.github/workflows/autoupdate.yaml +++ b/.github/workflows/autoupdate.yaml @@ -3,7 +3,7 @@ on: push: branches: - develop - - 'releases/**' + - 'release/**' jobs: autoupdate: name: auto-update