diff --git a/.github/workflows/keepalive.yml b/.github/workflows/keepalive.yml index 180d28f..e304ba4 100644 --- a/.github/workflows/keepalive.yml +++ b/.github/workflows/keepalive.yml @@ -1,17 +1,21 @@ name: Keepalive on: - # At 11:55 PM UTC, on day 20 of the month + # At 12:00 AM UTC, on day 13 of the month schedule: - - cron: '55 23 20 * *' + - cron: '0 0 13 * *' workflow_dispatch: +permissions: {} + jobs: keepalive: name: Keepalive # Only run cron on the silverstripe account if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule') runs-on: ubuntu-latest + permissions: + actions: write steps: - name: Keepalive uses: silverstripe/gha-keepalive@v1 diff --git a/.github/workflows/merge-up.yml b/.github/workflows/merge-up.yml deleted file mode 100644 index df9c8e8..0000000 --- a/.github/workflows/merge-up.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: Merge-up - -on: - # At 11:55 PM UTC, only on Friday - schedule: - - cron: '55 23 * * 5' - workflow_dispatch: - -jobs: - merge-up: - name: Merge-up - # Only run cron on the silverstripe account - if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule') - runs-on: ubuntu-latest - steps: - - name: Merge-up - uses: silverstripe/gha-merge-up@v1 diff --git a/.github/workflows/update-js.yml b/.github/workflows/update-js.yml index 1d8c5a9..18b27c5 100644 --- a/.github/workflows/update-js.yml +++ b/.github/workflows/update-js.yml @@ -4,7 +4,9 @@ on: workflow_dispatch: # Run on a schedule of once per quarter schedule: - - cron: '55 23 1 */3 *' + - cron: '35 7 1 */3 *' + +permissions: {} jobs: update-js: @@ -12,6 +14,10 @@ jobs: # Only run cron on the silverstripe account if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule') runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + actions: write steps: - name: Update JS uses: silverstripe/gha-update-js@v1