2020-07-29 07:38:38 +00:00
|
|
|
name: Update Publix Suffix List data
|
2020-05-12 09:17:08 +00:00
|
|
|
on:
|
2021-11-12 15:34:27 +00:00
|
|
|
workflow_dispatch:
|
2020-05-12 09:17:08 +00:00
|
|
|
schedule:
|
2022-08-30 16:38:46 +00:00
|
|
|
- cron: "0 0 * * 1"
|
2020-05-12 09:17:08 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
update-publicsuffix-data:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-04-13 09:15:08 +00:00
|
|
|
- name: Setup build environment
|
|
|
|
uses: android-password-store/android-password-store/.github/reusable-workflows/setup-gradle@develop
|
2020-08-13 10:47:04 +00:00
|
|
|
|
2020-05-12 09:17:08 +00:00
|
|
|
- name: Download new publicsuffix data
|
2024-04-13 09:15:08 +00:00
|
|
|
shell: bash
|
|
|
|
run: ./gradlew updatePSL
|
2020-07-14 18:38:34 +00:00
|
|
|
|
2023-02-23 13:56:57 +00:00
|
|
|
- name: Check if PR is required
|
2024-04-13 09:15:08 +00:00
|
|
|
shell: bash
|
2023-02-23 13:56:57 +00:00
|
|
|
run: if [[ $(git status -s) != '' ]]; 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
|
2022-02-20 00:18:48 +00:00
|
|
|
if: "${{ env.UPDATED == 'true' }}"
|
2024-04-13 09:15:08 +00:00
|
|
|
shell: bash
|
|
|
|
run: ./gradlew :autofill-parser:test -PslimTests
|
2021-08-28 11:39:10 +00:00
|
|
|
|
2021-11-12 15:34:27 +00:00
|
|
|
- name: Create Pull Request
|
|
|
|
id: cpr
|
2024-04-25 11:25:28 +00:00
|
|
|
uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e # v6.0.5
|
2022-02-20 00:18:48 +00:00
|
|
|
if: "${{ env.UPDATED == 'true' }}"
|
2021-11-12 15:34:27 +00:00
|
|
|
with:
|
|
|
|
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"
|
2022-10-30 08:12:16 +00:00
|
|
|
labels: A-PSL, S-automerge
|
2021-11-12 15:34:27 +00:00
|
|
|
title: Update Public Suffix List data
|
2022-09-05 08:11:19 +00:00
|
|
|
token: ${{ secrets.PSL_UPDATE_TOKEN }}
|
2021-07-29 15:53:59 +00:00
|
|
|
|
2022-09-05 08:11:19 +00:00
|
|
|
- name: Enable automerge for PR
|
2022-02-20 00:18:48 +00:00
|
|
|
if: "${{ steps.cpr.outputs.pull-request-operation == 'created' }}"
|
2021-12-22 16:27:42 +00:00
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
gh pr merge --squash --auto "${PR_URL}"
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.PSL_UPDATE_TOKEN }}
|
|
|
|
PR_URL: ${{ steps.cpr.outputs.pull-request-url }}
|