Merge pull request 'fix: fix: dispatcher uses old single-label names instead of bug-report combo labels (#339)' (#345) from fix/issue-339 into main
All checks were successful
ci/woodpecker/push/ci Pipeline was successful

This commit is contained in:
dev-bot 2026-04-07 08:39:02 +00:00
commit 064366678b

View file

@ -496,7 +496,7 @@ fetch_reproduce_candidates() {
python3 - "$tmpjson" <<'PYEOF'
import sys, json
data = json.load(open(sys.argv[1]))
skip = {"reproduced", "cannot-reproduce", "needs-triage"}
skip = {"in-progress", "in-triage", "rejected", "blocked"}
for issue in data:
labels = {l["name"] for l in (issue.get("labels") or [])}
if labels & skip: