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
4 changes: 2 additions & 2 deletions .github/workflows/bot-autoassign-pr-issue-link.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: PR Issue Auto-Assignment
on:
pull_request_target:
types: [opened, reopened, closed]
types: [opened, reopened, closed, edited, ready_for_review]
permissions:
contents: read
issues: write
Comment thread
coderabbitai[bot] marked this conversation as resolved.
pull-requests: read
concurrency:
group: bot-autoassign-pr-link-${{ github.repository }}-${{ github.event.pull_request.number }}-${{ github.event.action }}
group: bot-autoassign-pr-link-${{ github.repository }}-${{ github.event.pull_request.number }}

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[WARNING]: Concurrency group change may cancel needed runs

Removing ${{ github.event.action }} from the concurrency group means all events for the same PR now share the same concurrency slot. With cancel-in-progress: true, an edited or ready_for_review event can cancel an in-progress opened/reopened run. If a PR is edited (e.g. description change) while the auto-assignment workflow is still running, the auto-assignment will be cancelled and may never complete.


Reply with @kilocode-bot fix it to have Kilo Code address this issue.

cancel-in-progress: true
jobs:
auto-assign-issue:
Expand Down
Loading