from Hacker News

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

by pierotofy on 11/8/23, 2:13 PM with 1 comments

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.