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-09-04 17:07:25 +00:00
|
|
|
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
|
2021-12-06 18:19:29 +00:00
|
|
|
|
|
|
|
- name: Set up JDK
|
2023-07-24 13:22:13 +00:00
|
|
|
uses: actions/setup-java@cd89f46ac9d01407894225f350157564c9c7cee2 # v3.12.0
|
2022-02-17 04:43:04 +00:00
|
|
|
with:
|
2022-05-25 12:29:04 +00:00
|
|
|
distribution: temurin
|
2023-08-26 15:26:48 +00:00
|
|
|
java-version: 20
|
2020-08-13 10:47:04 +00:00
|
|
|
|
2020-05-12 09:17:08 +00:00
|
|
|
- name: Download new publicsuffix data
|
2023-08-29 02:30:39 +00:00
|
|
|
uses: gradle/gradle-build-action@ef76a971e2fa3f867b617efd72f2fbd72cf6f8bc # v2.8.0
|
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-08-29 02:30:39 +00:00
|
|
|
uses: gradle/gradle-build-action@ef76a971e2fa3f867b617efd72f2fbd72cf6f8bc # v2.8.0
|
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-06-14 03:53:13 +00:00
|
|
|
uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # v5.0.2
|
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 }}
|