From 9f3237539c98db97469be473a6f7ffc3ef7bc329 Mon Sep 17 00:00:00 2001 From: Steve Boyd Date: Tue, 16 Apr 2024 18:45:54 +1200 Subject: [PATCH] DOC Document required permissions --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index e2de970..644447b 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,8 @@ on: - cron: '0 0 1 * *' workflow_dispatch: +permissions: {} + jobs: keepalive: name: Keepalive @@ -24,6 +26,8 @@ jobs: # Change '/' to match the name of the account hosting this repository if: (github.event_name == 'schedule' && startsWith(github.repository, '/')) || (github.event_name != 'schedule') runs-on: ubuntu-latest + permissions: + actions: write steps: - name: Keepalive uses: silverstripe/gha-keepalive@v1