We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e567bd commit 4430db5Copy full SHA for 4430db5
1 file changed
.github/workflows/release.yml
@@ -121,7 +121,11 @@ jobs:
121
with:
122
ref: main
123
fetch-depth: 0
124
- token: ${{ secrets.GITHUB_TOKEN }}
+ # RELEASE_TOKEN (PAT) is required because main is protected — rules
125
+ # forbid direct pushes and require FOSSA to pass. The default
126
+ # GITHUB_TOKEN cannot bypass those rules. RELEASE_TOKEN is the same
127
+ # PAT the CLI's OIL→CLI workflow already uses to push tags into OIL.
128
+ token: ${{ secrets.RELEASE_TOKEN }}
129
130
- name: Commit release marker to main
131
env:
0 commit comments