Skip to content

Commit 04ce605

Browse files
committed
Fix Claude PR reactions workflow: don't cancel in-progress runs, use sticky comment
- cancel-in-progress: false — prevents a new comment from killing an in-progress Claude run on the same PR - use_sticky_comment: true — reuses a single comment instead of creating a new one each time, reducing noise https://claude.ai/code/session_01BR4nrqzgpFAMjFJBkmrryy
1 parent cb4b834 commit 04ce605

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/claude-pr-reactions.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616

1717
concurrency:
1818
group: claude-pr-reactions-${{ github.event.pull_request.number || github.event.issue.number }}
19-
cancel-in-progress: true
19+
cancel-in-progress: false
2020

2121
jobs:
2222
react:
@@ -48,3 +48,4 @@ jobs:
4848
github_token: ${{ secrets.PHPSTAN_BOT_TOKEN }}
4949
trigger_phrase: "@phpstan-bot"
5050
claude_args: "--model claude-opus-4-6 --max-turns 50"
51+
use_sticky_comment: true

0 commit comments

Comments
 (0)