GitHub

sub_issue_write

Add a sub-issue to a parent issue in a GitHub repository.

Remote github

Other tools also called sub_issue_write? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "repo": {
      "type": "string",
      "description": "Repository name"
    },
    "owner": {
      "type": "string",
      "description": "Repository owner"
    },
    "method": {
      "type": "string",
      "description": "The action to perform on a single sub-issue\nOptions are:\n- 'add' - add a sub-issue to a parent issue in a GitHub repository.\n- 'remove' - remove a sub-issue from a parent issue in a GitHub repository.\n- 'reprioritize' - change the order of sub-issues within a parent issue in a GitHub repository. Use either 'after_id' or 'before_id' to specify the new position.\n\t\t\t\t"
    },
    "after_id": {
      "type": "number",
      "description": "The ID of the sub-issue to be prioritized after (either after_id OR before_id should be specified)"
    },
    "before_id": {
      "type": "number",
      "description": "The ID of the sub-issue to be prioritized before (either after_id OR before_id should be specified)"
    },
    "issue_number": {
      "type": "number",
      "description": "The number of the parent issue"
    },
    "sub_issue_id": {
      "type": "number",
      "description": "The ID of the sub-issue to add. ID is not the same as issue number"
    },
    "replace_parent": {
      "type": "boolean",
      "description": "When true, replaces the sub-issue's current parent issue. Use with 'add' method only."
    }
  }
}
          

Provider

GitHub →