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
11 changes: 5 additions & 6 deletions .github/workflows/claude-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,6 @@ name: Claude Code (Review)
# - PR conversation comments on PRs already opened by the Claude App are handled by
# claude-write.yml so maintainers can ask Claude to make follow-up changes there.

concurrency:
# `issue_comment` events on PRs expose the PR number via `github.event.issue.number`,
# so this falls back there when `github.event.pull_request.number` is unset.
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.issue.number || github.run_id }}
cancel-in-progress: true

on:
issue_comment:
types: [created]
Expand Down Expand Up @@ -226,6 +220,11 @@ jobs:
if: needs.gate.outputs.should_run == 'true'
runs-on: ubuntu-latest
timeout-minutes: 45
concurrency:
# `issue_comment` events on PRs expose the PR number via `github.event.issue.number`,
# so this falls back there when `github.event.pull_request.number` is unset.
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.issue.number || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
issues: write
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/claude-write.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@ name: Claude Code (Write)
# than the numeric App ID in the PR payload, so the gate checks `CLAUDE_APP_LOGIN`
# instead of comparing directly to `APP_ID`.

concurrency:
group: ${{ github.workflow }}-${{ github.event.issue.number || github.run_id }}
cancel-in-progress: true

on:
issues:
types: [opened, assigned]
Expand Down Expand Up @@ -152,6 +148,9 @@ jobs:
if: needs.gate.outputs.should_run == 'true'
runs-on: ubuntu-latest
timeout-minutes: 60
concurrency:
group: ${{ github.workflow }}-${{ github.event.issue.number || github.run_id }}
cancel-in-progress: true

environment:
# The App private key lives only in this environment so only this single job
Expand Down
Loading