Show HN: IssueWhiz – Automated Issue Triaging with ChatGPT + boolean expressions
github.comI built a GitHub action that automates the triaging of issues. In a nutshell, you can define boolean questions using natural language, such as:
A: Does this text look like a software bug report?
B: Is this about a frontend problem?
C: Is this about a backend problem?
And define rules to act on such questions: if A and B --> Add label bug frontend
if A and C --> Add label bug backend
if A --> Add label bug
else --> Add comment Thanks for opening an issue! We will triage this shortly.
It uses LLMs to answer the questions, but also supports conventional regex style logic.Would love to hear feedback or suggestions for improvements. Note: OpenAI is currently down (https://status.openai.com/) you might need to wait for them to be back online before you can try it.