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-05-12 09:17:08 +00:00
|
|
|
- name: Download new publicsuffix data
|
|
|
|
run: curl -L https://github.com/mozilla-mobile/android-components/raw/master/components/lib/publicsuffixlist/src/main/assets/publicsuffixes -o app/src/main/assets/publicsuffixes
|
2020-07-14 18:38:34 +00:00
|
|
|
|
2020-05-12 09:17:08 +00:00
|
|
|
- name: Compare list changes
|
|
|
|
run: if [[ $(git diff --binary --stat) != '' ]]; then echo "::set-env name=UPDATED::true"; fi
|
2020-07-14 18:38:34 +00:00
|
|
|
|
2020-09-02 12:48:18 +00:00
|
|
|
- name: Create Pull Request
|
|
|
|
uses: peter-evans/create-pull-request@v3
|
2020-05-12 09:17:08 +00:00
|
|
|
if: env.UPDATED == 'true'
|
|
|
|
with:
|
2020-09-02 12:48:18 +00:00
|
|
|
commit-message: Update Public Suffix List data
|
|
|
|
branch: bot/update-psl
|
2020-07-14 18:38:34 +00:00
|
|
|
base: develop
|
2020-05-12 09:17:08 +00:00
|
|
|
title: 'Update Public Suffix List data'
|
2020-09-02 12:48:18 +00:00
|
|
|
assignees: msfjarvis
|