Files
Gitea-Tools/mark_issue.py
sysadmin f32aaaa3b5 fix: paginate repository-label inventory for gitea_set_issue_labels (#627)
Replace single-page GET labels?limit=100 with api_get_all-backed
_repo_label_id_map so later-page labels (e.g. type:feature,
workflow-hardening) are not falsely rejected during full-set replacement.

Also add post-mutation verification, fix related MCP/CLI label inventory
call sites, and add multi-page regression tests for the #601 reconciler
failure mode.

Closes #627
2026-07-10 13:05:27 -04:00

75 lines
2.4 KiB
Python
Executable File

#!/usr/bin/env python3
"""Claim or release a Gitea issue by toggling status:in-progress label.
Usage:
mark_issue.py <issue_number> [start|done]
mark_issue.py --remote prgs 12 done
"""
import os
import sys
import argparse
# Auto-execute using the project's local virtual environment Python
PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__))
venv_python = os.path.join(PROJECT_ROOT, "venv", "bin", "python3")
if os.path.exists(venv_python) and sys.executable != venv_python:
os.execv(venv_python, [venv_python] + sys.argv)
from gitea_auth import (
get_auth_header, resolve_remote, add_remote_args,
api_request, api_get_all, repo_api_url,
)
LABEL_NAME = "status:in-progress"
def main(argv=None):
parser = argparse.ArgumentParser(
description="Claim or release a Gitea issue by toggling the status:in-progress label."
)
add_remote_args(parser)
parser.add_argument("issue_number", type=int, help="Issue number.")
parser.add_argument(
"action", nargs="?", choices=["start", "done"], default="start",
help="Action: 'start' to claim (default) or 'done' to release."
)
args = parser.parse_args(argv)
host, org, repo = resolve_remote(args)
auth = get_auth_header(host)
if not auth:
print(f"Could not get credentials or token for {host}.", file=sys.stderr)
return 1
base = repo_api_url(host, org, repo)
try:
# Paginated inventory (#627): Gitea caps single pages at 50.
labels = api_get_all(f"{base}/labels", auth) or []
label_id = None
for lb in labels:
if lb.get("name") == LABEL_NAME:
label_id = lb.get("id")
break
if label_id is None:
print(f"Label '{LABEL_NAME}' not found in {org}/{repo} -- run manage_labels.py first.", file=sys.stderr)
return 1
if args.action == "start":
api_request("POST", f"{base}/issues/{args.issue_number}/labels", auth,
{"labels": [label_id]})
print(f"#{args.issue_number} claimed -> {LABEL_NAME}")
else:
api_request("DELETE", f"{base}/issues/{args.issue_number}/labels/{label_id}", auth)
print(f"#{args.issue_number} released -> {LABEL_NAME} removed")
return 0
except RuntimeError as e:
print(f"Error: {e}", file=sys.stderr)
return 1
if __name__ == "__main__":
sys.exit(main())