remove_issue_block
Removes a blocker relationship so one issue no longer blocks another, unblocking the dependent issue.
Instructions
Remove a block so index no longer blocks dep_index. dep_owner/dep_repo default to the same repo. Returns the blocker issue. 404 if dependencies are not enabled on the repo.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repo | No | Repository name of the issue that currently blocks the other (defaults to GITEA_DEFAULT_REPO) | |
| index | Yes | Issue number that currently blocks the dependency (the blocker) | |
| owner | No | Repository owner of the issue that currently blocks the other (defaults to GITEA_DEFAULT_OWNER) | |
| dep_repo | No | Repository name of the issue to unblock (defaults to the same repo as `repo`) | |
| dep_index | Yes | Issue number to unblock (it stops being dependent on `index`) | |
| dep_owner | No | Repository owner of the issue to unblock (defaults to the same owner as `owner`) |