-
Notifications
You must be signed in to change notification settings - Fork 90
added auto reply #206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added auto reply #206
Conversation
updated readme, new screenshots
Reviewer's GuideThis PR enhances the README with documentation for two new features and streamlined setup steps, and introduces a GitHub Actions workflow that automatically replies to issue assignment requests. Sequence diagram for auto-reply to assignment requestssequenceDiagram
actor User
participant GitHub as GitHub
participant Action as Auto-Reply Action
participant Issue as GitHub Issue
User->>GitHub: Post comment on issue
GitHub->>Action: Trigger issue_comment event
Action->>Action: Check comment for assignment keywords
alt Assignment keyword found
Action->>Issue: Post auto-reply comment
else No assignment keyword
Action->>Action: Do nothing
end
File-Level Changes
Assessment against linked issues
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @Preeti9764 - I've reviewed your changes - here's some feedback:
- Add a check in the auto-reply workflow to detect whether the bot has already commented and skip replying again to avoid duplicate responses.
- After reshuffling the README sections, verify that all internal links and anchors are updated so navigation isn’t broken.
- Consider extracting the long ASSIGN_RESPONSE text from the workflow into a separate config or repo variable for easier maintenance.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- Add a check in the auto-reply workflow to detect whether the bot has already commented and skip replying again to avoid duplicate responses.
- After reshuffling the README sections, verify that all internal links and anchors are updated so navigation isn’t broken.
- Consider extracting the long ASSIGN_RESPONSE text from the workflow into a separate config or repo variable for easier maintenance.
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
📌 Fixes
Fixes #202
📝 Summary of Changes
Summary by Sourcery
Introduce a GitHub Actions workflow that automatically replies to issue assignment requests and enhance the README with new filtering options and streamlined setup instructions.
Enhancements:
CI: