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
5 changes: 5 additions & 0 deletions .github/workflows/Release-and-Publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,11 @@ jobs:
permissions:
contents: read
security-events: write
# Required by the called "Build Module.yml": its `changes` job declares pull-requests: read.
# A reusable workflow's jobs may not request permissions the caller did not grant, and GitHub
# validates this STATICALLY at startup -- even though `changes` is skipped on the release
# (workflow_call) path. Without granting it here the release run fails to start (startup_failure).
pull-requests: read
with:
ref: ${{ needs.analyze.outputs.release_sha }}

Expand Down
Loading