aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/update_publicsuffix_data.yml40
1 files changed, 27 insertions, 13 deletions
diff --git a/.github/workflows/update_publicsuffix_data.yml b/.github/workflows/update_publicsuffix_data.yml
index 2bfb51f8..bc6132c9 100644
--- a/.github/workflows/update_publicsuffix_data.yml
+++ b/.github/workflows/update_publicsuffix_data.yml
@@ -1,5 +1,6 @@
name: Update Publix Suffix List data
on:
+ workflow_dispatch:
schedule:
- cron: '0 0 * * 6'
@@ -9,9 +10,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
- with:
- persist-credentials: false
- fetch-depth: 0
- name: Download new publicsuffix data
uses: gradle/gradle-build-action@cba1833ddecbbee649950c284416981928631008
@@ -27,16 +25,32 @@ jobs:
with:
arguments: :autofill-parser:test -PslimTests
- - name: Commit changes
+ - name: Create Pull Request
+ id: cpr
+ uses: peter-evans/create-pull-request@01f7dd1d28f5131231ba3ede0f1c8cb413584a1d
if: env.UPDATED == 'true'
- run: |
- git config --local user.name "GitHub Actions"
- git config --local user.email "noreply@github.com"
- git commit -am "autofill-parser: update publicsuffixes file"
+ with:
+ assignees: msfjarvis
+ author: GitHub Actions <noreply@github.com>
+ base: develop
+ body: This is an automated pull request to update the publicsuffixes file to the latest copy from Mozilla
+ branch: bot/update-psl
+ commit-message: "autofill-parser: update publicsuffixes file"
+ labels: PSL
+ title: Update Public Suffix List data
+ token: ${{ secrets.GITHUB_TOKEN }}
- - name: Push to develop
- uses: ad-m/github-push-action@40bf560936a8022e68a3c00e7d2abefaf01305a6
- if: env.UPDATED == 'true'
+ - name: Auto approve
+ if: steps.cpr.outputs.pull-request-operation == 'created'
+ uses: juliangruber/approve-pull-request-action@36e19d8a79c9c62bf85a0565cb2799a3cf395343
+ with:
+ github-token: ${{ secrets.PSL_UPDATE_TOKEN }}
+ number: ${{ steps.cpr.outputs.pull-request-number }}
+
+ - name: Enable Pull Request Automerge
+ if: steps.cpr.outputs.pull-request-operation == 'created'
+ uses: peter-evans/enable-pull-request-automerge@d2ede5636b3febc92809259995e643565e675aab
with:
- github_token: ${{ secrets.PSL_UPDATE_TOKEN }}
- branch: develop
+ token: ${{ secrets.PSL_UPDATE_TOKEN }}
+ pull-request-number: ${{ steps.cpr.outputs.pull-request-number }}
+ merge-method: squash