feat(caretaker): post comment before auto-closing feature requests#28411
feat(caretaker): post comment before auto-closing feature requests#28411chadd28 wants to merge 2 commits into
Conversation
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request improves the transparency of the triage process by providing feedback to users when their feature requests are automatically closed. By posting a polite explanation regarding the current focus on core stability, the system manages user expectations more effectively during periods where feature development is deprioritized. Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize the Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counterproductive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. Footnotes
|
|
📊 PR Size: size/S
|
There was a problem hiding this comment.
Code Review
This pull request updates the triage worker to send an automated comment when an issue is classified as a 'FEATURE' request, explaining that the team is currently focusing on critical system maintenance and core stability, before auto-closing the issue. It also updates the corresponding unit tests to verify this new behavior separately from 'SPAM' and 'EMPTY' issues. There are no review comments, and I have no feedback to provide.
Summary
Posts an explanatory comment prior to attaching the
auto-closelabel when an issue is triaged as a feature request (quality: FEATURE), informing users of current engineering focus on core stability.Details
main.pyin the Triage Worker execution loop to dispatchsend_comment_actionbeforesend_label_actionwhenquality == "FEATURE".test_main.pyfor theFEATUREquality comment flow.How to Validate
cd tools/caretaker-agent/cloudrun/triage-worker python -m unittest discover -s testsPre-Merge Checklist