Skip to content

Commit d4bec66

Browse files
abueideclaude
andauthored
fix(ci): grant write permission to dry-run release workflow (#1136)
semantic-release runs `git push --dry-run` even in dry-run mode to verify push permissions. The workflow had `contents: read` which caused a 403 from github-actions[bot]. Changed to `contents: write`. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent d0e141c commit d4bec66

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release-dry-run.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
needs: [fast-checks]
2727
runs-on: ubuntu-latest
2828
permissions:
29-
contents: read
29+
contents: write
3030
steps:
3131
- uses: actions/checkout@v4
3232
with:

0 commit comments

Comments
 (0)