TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

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

1 点作者 pierotofy超过 1 年前
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

pierotofy超过 1 年前
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.