Settings

Theme

Show HN: IssueWhiz – Automated Issue Triaging with ChatGPT + boolean expressions

github.com

1 points by pierotofy 2 years ago · 1 comment · 1 min read

Reader

I 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.

pierotofyOP 2 years ago

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.

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection