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
11 changes: 9 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,15 @@ jobs:
smoke:
name: Smoke test (release gate)
uses: ./.github/workflows/smoke-test.yml
permissions:
contents: read
# No job-level `permissions:` block — `scripts/lib/release-readiness.ts`
# `diagnosticsForPermissions` enforces strict equality between job-level
# and top-level permission values (line ~852: "is `<actual>` but must be
# `<expected>`"). A `contents: read` override here failed Layer 1
# readiness on the v0.8.0-rc.1 dispatch (run 25639883562). The smoke job
# therefore inherits the top-level `{ contents: write, attestations:
# write, id-token: write }` block. The reusable smoke-test workflow is
# read-only in practice (npm pack + install + CLI smoke); the inherited
# write scopes are unused.

release:
name: Manual GitHub Release
Expand Down
Loading