Add minimum token permissions for all GitHub workflow files #17
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.
This PR adds minimum token permissions to all GitHub workflow files to improve security posture according to OpenSSF Scorecard recommendations.
Changes Made
Root-Level Permissions Added
Added
permissions: contents: readto 14 workflow files that were missing root-level permissions:check-spelling.ymlci-contrib.ymlci-instrumentation-with-services.ymlci-instrumentation.ymlci-markdown-link.ymlci-markdownlint.ymlinstallation-tests.ymlrelease-hook-on-closed.ymlrelease-hook-on-push.ymlrelease-perform.ymlrelease-request-weekly.ymlrelease-request.ymlrelease-retry.ymlstale.yamlOver-Permissive Root-Level Permissions Fixed
Fixed 2 workflow files with over-permissive root-level permissions by moving specific permissions to job level:
conventional-commits.yaml: movedpull-requests: readto job levelrelease-please.yaml: movedcontents: write, pull-requests: writeto job levelJob-Level Permissions Added
Added appropriate job-level permissions for workflows that need write access:
ci-markdown-link.yml:pull-requests: writefor PR review commentsstale.yaml:issues: write, pull-requests: writefor labeling/closing issues and PRscontents: write, pull-requests: writefor release managementAlready Compliant Files
2 workflow files were already compliant:
fossa.yml: already hadpermissions: contents: readossf-scorecard.yml: already hadpermissions: read-allImplementation Details
contents: readorread-allonlyVerification
All 18 workflow files now pass OpenSSF Scorecard Token-Permissions check requirements:
Fixes #16.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.