remove_issue_dependency
Remove a blocking dependency between issues so the dependent issue is no longer blocked. Returns the formerly dependent issue after removing 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`) |