remove_issue_dependency
Remove an issue dependency to unblock a dependent issue. Specify the blocked issue and the blocker to break the link.
Instructions
Remove a dependency so index is no longer blocked by dep_index. dep_owner/dep_repo default to the same repo. Returns the target issue (the formerly dependent one). 404 if dependencies are not enabled on the repo.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repo | No | Repository name of the issue losing the dependency (defaults to GITEA_DEFAULT_REPO) | |
| index | Yes | Issue number losing the dependency (the dependent / blocked issue) | |
| owner | No | Repository owner of the issue losing the dependency (defaults to GITEA_DEFAULT_OWNER) | |
| dep_repo | No | Repository name of the dependency issue (defaults to the same repo as `repo`) | |
| dep_index | Yes | Issue number of the dependency to remove (the blocker) | |
| dep_owner | No | Repository owner of the dependency issue (defaults to the same owner as `owner`) |