fix: use empty labels array for Gitea API compat
CI / test (push) Failing after 7s

This commit is contained in:
2026-05-29 22:10:40 +08:00
parent 7cf2231342
commit 7cd1cbbb08
+1 -1
View File
@@ -38,7 +38,7 @@ def main():
payload = json.dumps({ payload = json.dumps({
"title": title, "title": title,
"body": body, "body": body,
"labels": ["ci-failure", "agent-task"], "labels": [],
}).encode("utf-8") }).encode("utf-8")
url = f"{GITEA_URL}/api/v1/repos/{REPO}/issues" url = f"{GITEA_URL}/api/v1/repos/{REPO}/issues"