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
|
2020-12-07 07:47:16 +00:00
|
|
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
2020-08-13 10:47:04 +00:00
|
|
|
|
2020-05-12 09:17:08 +00:00
|
|
|
- name: Download new publicsuffix data
|
2021-07-29 15:53:59 +00:00
|
|
|
uses: burrunan/gradle-cache-action@03c71a8ba93d670980695505f48f49daf43704a6
|
|
|
|
with:
|
|
|
|
arguments: updatePSL
|
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
|
|
|
|
2021-07-29 15:53:59 +00:00
|
|
|
- name: Verify update publicsuffixes file
|
|
|
|
uses: burrunan/gradle-cache-action@03c71a8ba93d670980695505f48f49daf43704a6
|
|
|
|
if: env.UPDATED == 'true'
|
|
|
|
with:
|
|
|
|
arguments: :autofill-parser:test
|
|
|
|
|
2020-09-02 12:48:18 +00:00
|
|
|
- name: Create Pull Request
|
2021-05-15 06:59:35 +00:00
|
|
|
uses: peter-evans/create-pull-request@01f7dd1d28f5131231ba3ede0f1c8cb413584a1d
|
2020-05-12 09:17:08 +00:00
|
|
|
if: env.UPDATED == 'true'
|
|
|
|
with:
|
2020-09-02 12:48:18 +00:00
|
|
|
assignees: msfjarvis
|
2020-10-23 09:33:45 +00:00
|
|
|
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 }}
|