TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

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

1 pointsby pierotofyover 1 year ago
I built a GitHub action that automates the triaging of issues. In a nutshell, you can define boolean questions using natural language, such as:<p><pre><code> A: Does this text look like a software bug report? B: Is this about a frontend problem? C: Is this about a backend problem? </code></pre> And define rules to act on such questions:<p><pre><code> if A and B --&gt; Add label bug frontend if A and C --&gt; Add label bug backend if A --&gt; Add label bug else --&gt; Add comment Thanks for opening an issue! We will triage this shortly. </code></pre> It uses LLMs to answer the questions, but also supports conventional regex style logic.<p>Would love to hear feedback or suggestions for improvements.

1 comment

pierotofyover 1 year ago
Note: OpenAI is currently down (<a href="https:&#x2F;&#x2F;status.openai.com&#x2F;" rel="nofollow noreferrer">https:&#x2F;&#x2F;status.openai.com&#x2F;</a>) you might need to wait for them to be back online before you can try it.