check_issue_blocked
Check if an issue is blocked by open dependencies. Returns a structured verdict showing total dependencies and open blockers, helping you identify what stands in the way.
Instructions
Check whether an issue is blocked — i.e. has at least one dependency that is not yet closed (state !== "closed"). Returns a single structured verdict: blocked, blockers (the open dependency issues), total_dependencies, and open_blockers. A convenience aggregator over list_issue_dependencies that paginates internally (no page/limit input). Returns 404 if the repo has not enabled issue dependencies (enable_issue_dependencies).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repo | No | Repository name (defaults to GITEA_DEFAULT_REPO) | |
| index | Yes | Issue number to check for blocking dependencies | |
| owner | No | Repository owner (defaults to GITEA_DEFAULT_OWNER) |