feat: implement /assign GitHub Action#75
Open
shashank2k5 wants to merge 1 commit into
Open
Conversation
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
This PR implements a GitHub Action that allows contributors to self-assign issues and pull requests using the
/assigncommand. This automation reduces maintainer workload by enabling instant task ownership directly from the comment section.Closes #
Type of Change
What Changed
.github/workflows/assign.yml: Created a new workflow that parses/assigncommands usingactions/github-script. It handles self-assignment, mention-based assignment (/assign @user), duplicate prevention, and validation of GitHub usernames.CONTRIBUTING.md: Added a new "Self-Assigning Issues & PRs" section to guide new contributors on how to use the command and updated the PR process workflow.How to Test
/assign./assign @usernamefor another user or/assignon an item you are already assigned to.Checklist
console.logor debug statements left in the code.Additional Context
The workflow uses
github-token: ${{ secrets.GITHUB_TOKEN }}which has the necessary permissions defined in the YAML file (issues: write,pull-requests: write). It is designed to ignore bot comments to prevent infinite loops.