Fix workflow token permission alerts - #19
Merged
Liang-Chun Tsai (ltsai-dev) merged 1 commit intoAug 18, 2026
Merged
Conversation
Declare read-only top-level permissions so future jobs cannot inherit broader repository defaults. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Liang-Chun Tsai (ltsai-dev)
requested review from
a team
and
a lite review from Copilot
August 18, 2026 20:31
Copilot started reviewing on behalf of
Liang-Chun Tsai (ltsai-dev)
August 18, 2026 20:32
View session
There was a problem hiding this comment.
Pull request overview
This PR addresses CodeQL/OpenSSF Scorecard TokenPermissionsID alerts by explicitly setting top-level GITHUB_TOKEN permissions to read-only in the repository’s CI workflows, while keeping existing job-level least-privilege permissions in place.
Changes:
- Added top-level
permissions: contents: readto the unit test workflow. - Added top-level
permissions: contents: readto the code quality workflow.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/unit-tests.yml | Adds explicit top-level read-only token permissions for the unit test workflow. |
| .github/workflows/code-quality.yml | Adds explicit top-level read-only token permissions for the code quality workflow. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This addresses CodeQL/OpenSSF Scorecard alerts #60 and #61 (
TokenPermissionsID).Alerts #59 (
BranchProtectionID) and #77 (CodeReviewID) are repository-policy/history findings and are not dismissed by this code change. The activemainruleset already mitigates their core risks; closure depends on compliant reviewed merges and a subsequent Scorecard scan.