diff options
Diffstat (limited to '.github/workflows/update_publicsuffix_data.yml')
-rw-r--r-- | .github/workflows/update_publicsuffix_data.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/update_publicsuffix_data.yml b/.github/workflows/update_publicsuffix_data.yml index fe3fcca9..d90157df 100644 --- a/.github/workflows/update_publicsuffix_data.yml +++ b/.github/workflows/update_publicsuffix_data.yml @@ -2,7 +2,7 @@ name: Update Publix Suffix List data on: workflow_dispatch: schedule: - - cron: "0 0 * * 6" + - cron: "0 0 * * 1" jobs: update-publicsuffix-data: @@ -21,6 +21,7 @@ jobs: uses: gradle/gradle-build-action@v2.3.0 with: arguments: updatePSL + gradle-home-cache-cleanup: true - name: Compare list changes run: if [[ $(git diff --binary --stat) != "" ]]; then echo "UPDATED=true" >> $GITHUB_ENV; fi @@ -30,13 +31,13 @@ jobs: if: "${{ env.UPDATED == 'true' }}" with: arguments: :autofill-parser:test -PslimTests + gradle-home-cache-cleanup: true - name: Create Pull Request id: cpr uses: peter-evans/create-pull-request@v4.1.1 if: "${{ env.UPDATED == 'true' }}" with: - assignees: msfjarvis 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 |