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:
@@ -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 = (
|
||||
|
||||
Reference in New Issue
Block a user