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:
|
|
|
|
- name: Checkout
|
2023-04-12 16:45:11 +00:00
|
|
|
uses: actions/checkout@83b7061638ee4956cf7545a6f7efe594e5ad0247 # v3.5.1
|
2021-12-06 18:19:29 +00:00
|
|
|
|
|
|
|
- name: Set up JDK
|
2023-03-27 19:27:47 +00:00
|
|
|
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
2022-02-17 04:43:04 +00:00
|
|
|
with:
|
2022-05-25 12:29:04 +00:00
|
|
|
distribution: temurin
|
2022-09-05 08:21:05 +00:00
|
|
|
java-version: 18
|
2020-08-13 10:47:04 +00:00
|
|
|
|
2020-05-12 09:17:08 +00:00
|
|
|
- name: Download new publicsuffix data
|
2023-04-13 03:05:59 +00:00
|
|
|
uses: gradle/gradle-build-action@5056fa9d50478a14af3c9925c12ca02318659d3e # v2.4.1
|
2021-07-29 15:53:59 +00:00
|
|
|
with:
|
2022-06-10 17:57:56 +00:00
|
|
|
arguments: updatePSL
|
2022-08-30 16:38:46 +00:00
|
|
|
gradle-home-cache-cleanup: true
|
2020-07-14 18:38:34 +00:00
|
|
|
|
2023-02-23 13:56:57 +00:00
|
|
|
- name: Check if PR is required
|
|
|
|
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
|
2023-04-13 03:05:59 +00:00
|
|
|
uses: gradle/gradle-build-action@5056fa9d50478a14af3c9925c12ca02318659d3e # v2.4.1
|
2022-02-20 00:18:48 +00:00
|
|
|
if: "${{ env.UPDATED == 'true' }}"
|
2021-07-29 15:53:59 +00:00
|
|
|
with:
|
2022-06-10 17:57:56 +00:00
|
|
|
arguments: :autofill-parser:test -PslimTests
|
2022-08-30 16:38:46 +00:00
|
|
|
gradle-home-cache-cleanup: true
|
2021-08-28 11:39:10 +00:00
|
|
|
|
2021-11-12 15:34:27 +00:00
|
|
|
- name: Create Pull Request
|
|
|
|
id: cpr
|
2023-04-05 03:42:18 +00:00
|
|
|
uses: peter-evans/create-pull-request@5b4a9f6a9e2af26e5f02351490b90d01eb8ec1e5 # v5.0.0
|
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 }}
|