Skip to content
Merged
Show file tree
Hide file tree
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
13 changes: 9 additions & 4 deletions .github/workflows/ci-groom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,18 @@ jobs:
# regardless of `if:` guards or the bot App token doing the real writes). A
# short grant fails the whole run with an opaque "workflow file issue" / 0
# jobs. groom.yml's jobs need: file -> issues: write; build_select ->
# issues: read + pull-requests: read; the finder/verifier agent jobs ->
# id-token: write (claude-code-action mints its GitHub token via OIDC).
# Grant the union or the call is rejected.
# issues: read + pull-requests: read. The finder/verifier/builder agent jobs
# need NOTHING beyond contents: read — they invoke the Claude CLI directly
# and mint no GitHub token, so `id-token: write` is no longer required
# (BE-4214). Grant the union below or the call is rejected.
# ORDERING: the pinned SHA below predates the agent jobs entirely, so
# dropping the grant is safe against it. When bumping that pin, move it to
# a SHA at or after the BE-4214 CLI migration — the intermediate main SHAs
# (#55 / #64) still declare `id-token: write` on the agent jobs and would
# be rejected by this shorter grant.
contents: read
issues: write
pull-requests: read
id-token: write
uses: Comfy-Org/github-workflows/.github/workflows/groom.yml@07154fb5d0d979017d79b822873cfbe86483bfb3 # main (groom.yml lands here — #49 / BE-3872)
Comment thread
mattmillerai marked this conversation as resolved.
Comment thread
mattmillerai marked this conversation as resolved.
with:
# File groom's issues as cloud-code-bot (App token), not github-actions[bot].
Expand Down
Loading
Loading