Skip to content

Commit c4af20c

Browse files
bugerclaude
andcommitted
Fix release-bot workflow permissions causing startup_failure
The reusable workflow at TykTechnologies/github-actions requires contents: write, pull-requests: write, and issues: write to create cherry-pick PRs. The caller was only granting read permissions, causing GitHub to reject the job at startup. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent b30deed commit c4af20c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/release-bot.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ on:
55
types: [created]
66

77
permissions:
8-
contents: read
9-
issues: read
8+
contents: write
9+
pull-requests: write
10+
issues: write
1011

1112
jobs:
1213
release_bot:

0 commit comments

Comments
 (0)