2020-07-29 07:38:38 +00:00
|
|
|
name: Update Publix Suffix List data
|
2020-05-12 09:17:08 +00:00
|
|
|
on:
|
|
|
|
schedule:
|
2020-05-29 05:59:06 +00:00
|
|
|
- cron: '0 0 * * 6'
|
2020-05-12 09:17:08 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
update-publicsuffix-data:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
2020-07-14 18:38:34 +00:00
|
|
|
|
2020-08-13 10:47:04 +00:00
|
|
|
- name: Initialize git config
|
|
|
|
run: |
|
|
|
|
git config user.name "GitHub Actions"
|
|
|
|
git config user.email noreply@github.com
|
2020-10-10 06:29:01 +00:00
|
|
|
git checkout -b bot/update-psl
|
2020-08-13 10:47:04 +00:00
|
|
|
|
2020-05-12 09:17:08 +00:00
|
|
|
- name: Download new publicsuffix data
|
2020-09-16 18:17:55 +00:00
|
|
|
run: curl -L https://github.com/mozilla-mobile/android-components/raw/master/components/lib/publicsuffixlist/src/main/assets/publicsuffixes -o autofill-parser/src/main/assets/publicsuffixes
|
2020-07-14 18:38:34 +00:00
|
|
|
|
2020-05-12 09:17:08 +00:00
|
|
|
- name: Compare list changes
|
2020-10-10 06:29:01 +00:00
|
|
|
run: if [[ $(git diff --binary --stat) != '' ]]; then echo "UPDATED=true" >> $GITHUB_ENV; fi
|
2020-07-14 18:38:34 +00:00
|
|
|
|
2020-09-02 12:48:18 +00:00
|
|
|
- name: Create Pull Request
|
2020-10-10 06:29:01 +00:00
|
|
|
uses: repo-sync/pull-request@v2
|
2020-05-12 09:17:08 +00:00
|
|
|
if: env.UPDATED == 'true'
|
|
|
|
with:
|
2020-10-10 06:29:01 +00:00
|
|
|
source_branch: bot/update-psl
|
|
|
|
destination_branch: develop
|
|
|
|
pr_title: "Update Public Suffix List data"
|
|
|
|
pr_body: "This is an automated pull request to update the publicsuffixes file to the latest copy from Mozilla"
|
2020-09-02 12:48:18 +00:00
|
|
|
assignees: msfjarvis
|
2020-10-10 06:29:01 +00:00
|
|
|
pr_label: PSL
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|