fix(ci): set loop/code label on Firebase test failure issues

Closes #550

The Firebase tests workflow created issues with the legacy "Ready"
label, but the current agent loop is triggered by `loop/code`. Switch
the label so failures are picked up by the coding agent automatically.
This commit is contained in:
guettlibot
2026-06-09 10:28:52 +00:00
parent f0eff7dc7c
commit d757e499d0
+1 -1
View File
@@ -135,7 +135,7 @@ jobs:
repo_labels = api_get("/labels")
label_map = {l["name"]: l["id"] for l in repo_labels}
label_ids = [label_map["Ready"]] if "Ready" in label_map else []
label_ids = [label_map["loop/code"]] if "loop/code" in label_map else []
title = "Firebase Tests failed — find root cause and fix"
body = (