Skip to content

Commit

Permalink
fix: grant repo write permission to weekly tagger (#202)
Browse files Browse the repository at this point in the history
Fixes #201
  • Loading branch information
alexeagle authored Oct 24, 2024
1 parent 554870e commit 0322b66
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion {{ .ProjectSnake }}/.github/workflows/weekly_tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ on:
schedule:
# Mondays at 5am UTC / midnight EST
- cron: '0 5 * * 1'


# We need contents write permission to create a tag.
# See https://docs.github.com/en/rest/authentication/permissions-required-for-github-apps?apiVersion=2022-11-28#repository-permissions-for-actions
permissions:
contents:
write

jobs:
tagger:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 0322b66

Please sign in to comment.