From 90ddb1598726f83ff41aff12b406f93c49a9cc0a Mon Sep 17 00:00:00 2001 From: Steve Boyd Date: Mon, 20 May 2024 12:49:54 +1200 Subject: [PATCH] MNT Run module-standardiser --- .github/workflows/auto-tag.yml | 5 +++++ .github/workflows/keepalive.yml | 8 ++++++-- .github/workflows/merge-up.yml | 17 ----------------- 3 files changed, 11 insertions(+), 19 deletions(-) delete mode 100644 .github/workflows/merge-up.yml diff --git a/.github/workflows/auto-tag.yml b/.github/workflows/auto-tag.yml index 32801df..8d7002f 100644 --- a/.github/workflows/auto-tag.yml +++ b/.github/workflows/auto-tag.yml @@ -4,10 +4,15 @@ on: tags: - '*.*.*' workflow_dispatch: + +permissions: {} + jobs: auto-tag: name: Auto-tag runs-on: ubuntu-latest + permissions: + contents: write steps: - name: Auto-tag uses: silverstripe/gha-auto-tag@v1 diff --git a/.github/workflows/keepalive.yml b/.github/workflows/keepalive.yml index 5d4f1a5..4c50d93 100644 --- a/.github/workflows/keepalive.yml +++ b/.github/workflows/keepalive.yml @@ -1,17 +1,21 @@ name: Keepalive on: - # At 7:35 PM UTC, on day 16 of the month + # At 5:25 PM UTC, on day 10 of the month schedule: - - cron: '35 19 16 * *' + - cron: '25 17 10 * *' 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 7f308c5..0000000 --- a/.github/workflows/merge-up.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: Merge-up - -on: - # At 7:35 PM UTC, only on Monday - schedule: - - cron: '35 19 * * 1' - 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