feat: replace broken auto-assign with production-ready issue claim system#131
Merged
Conversation
…stem - Replace invalid 'issues: [commented]' trigger with correct 'issue_comment: [created]' - Add /claim command for contributors to self-assign issues - Add /assign @user command for maintainers (with permission checks) - Add /release command for assignees to release issues - Add comprehensive error handling and logging - Add concurrency control to prevent race conditions - Add PR comment guard to skip PR comments - Add bot detection to ignore automated comments - Add graceful label handling (skip if label doesn't exist) - Add detailed documentation with usage examples - Remove broken auto-assign-issue.yml workflow
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Replace the broken �uto-assign-issue.yml workflow with a production-ready issue claim system supporting three commands via issue comments.
Motivation
The original workflow used issues: types: [commented] which is an invalid event type for GitHub Actions. The issues event doesn't have a commented type — issue comments are handled by the separate issue_comment event. This caused the workflow to never trigger, leaving issues unassigned.
Changes
New Workflow: .github/workflows/issue-claim.yml
Commands supported:
Key features:
Edge cases handled:
Removed Workflow
Documentation
Files Modified
Architectural Decisions
Testing
Security Considerations
Remaining TODOs
None — this is a complete, production-ready implementation.
Assumptions & Limitations