Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
- uses: actions/checkout@v4
with:
ref: master
token: ${{ secrets.TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
Comment on lines 115 to +118

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Ensure publish job has writable token for git push

The publish job now checks out with secrets.GITHUB_TOKEN. Unless repository settings explicitly grant that token contents: write, the default permission is read‑only, so the later git push in the same job will be rejected and the version‑bump commit will never land. The previous secrets.TOKEN was presumably a PAT with the necessary rights. Consider restoring a PAT or adding permissions: contents: write for the job before relying on GITHUB_TOKEN for the push.

Useful? React with 👍 / 👎.

- uses: actions/download-artifact@v4
with:
name: meta
Expand Down