- Notifications
You must be signed in to change notification settings - Fork1.1k
Support project tools#557
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Draft
yu-iskw wants to merge1 commit intogithub:mainChoose a base branch fromyu-iskw:support-projects-tools
base:main
Could not load branches
Branch not found:{{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline, and old review comments may become outdated.
Uh oh!
There was an error while loading.Please reload this page.
Draft
Changes fromall commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"annotations": { | ||
"title": "Add issue to project", | ||
"readOnlyHint": false | ||
}, | ||
"description": "Add an issue to a project", | ||
"inputSchema": { | ||
"properties": { | ||
"issue_id": { | ||
"description": "Issue node ID", | ||
"type": "string" | ||
}, | ||
"project_id": { | ||
"description": "Project ID", | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"project_id", | ||
"issue_id" | ||
], | ||
"type": "object" | ||
}, | ||
"name": "add_issue_to_project" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"annotations": { | ||
"title": "Create draft issue", | ||
"readOnlyHint": false | ||
}, | ||
"description": "Create a draft issue in a project", | ||
"inputSchema": { | ||
"properties": { | ||
"body": { | ||
"description": "Issue body", | ||
"type": "string" | ||
}, | ||
"project_id": { | ||
"description": "Project ID", | ||
"type": "string" | ||
}, | ||
"title": { | ||
"description": "Issue title", | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"project_id", | ||
"title" | ||
], | ||
"type": "object" | ||
}, | ||
"name": "create_draft_issue" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"annotations": { | ||
"title": "Create issue", | ||
"readOnlyHint": false | ||
}, | ||
"description": "Create a new issue", | ||
"inputSchema": { | ||
"properties": { | ||
"body": { | ||
"description": "Issue body", | ||
"type": "string" | ||
}, | ||
"owner": { | ||
"description": "Repository owner", | ||
"type": "string" | ||
}, | ||
"repo": { | ||
"description": "Repository name", | ||
"type": "string" | ||
}, | ||
"title": { | ||
"description": "Issue title", | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"owner", | ||
"repo", | ||
"title" | ||
], | ||
"type": "object" | ||
}, | ||
"name": "create_project_issue" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"annotations": { | ||
"title": "Delete project item", | ||
"readOnlyHint": false | ||
}, | ||
"description": "Delete a project item", | ||
"inputSchema": { | ||
"properties": { | ||
"item_id": { | ||
"description": "Item ID", | ||
"type": "string" | ||
}, | ||
"project_id": { | ||
"description": "Project ID", | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"project_id", | ||
"item_id" | ||
], | ||
"type": "object" | ||
}, | ||
"name": "delete_project_item" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"annotations": { | ||
"title": "Get project fields", | ||
"readOnlyHint": true | ||
}, | ||
"description": "Get fields for a project", | ||
"inputSchema": { | ||
"properties": { | ||
"number": { | ||
"description": "Project number", | ||
"type": "number" | ||
}, | ||
"owner": { | ||
"description": "Owner login", | ||
"type": "string" | ||
}, | ||
"owner_type": { | ||
"description": "Owner type", | ||
"enum": [ | ||
"user", | ||
"organization" | ||
], | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"owner", | ||
"number" | ||
], | ||
"type": "object" | ||
}, | ||
"name": "get_project_fields" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"annotations": { | ||
"title": "Get project items", | ||
"readOnlyHint": true | ||
}, | ||
"description": "Get items for a project", | ||
"inputSchema": { | ||
"properties": { | ||
"number": { | ||
"description": "Project number", | ||
"type": "number" | ||
}, | ||
"owner": { | ||
"description": "Owner login", | ||
"type": "string" | ||
}, | ||
"owner_type": { | ||
"description": "Owner type", | ||
"enum": [ | ||
"user", | ||
"organization" | ||
], | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"owner", | ||
"number" | ||
], | ||
"type": "object" | ||
}, | ||
"name": "get_project_items" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"annotations": { | ||
"title": "List projects", | ||
"readOnlyHint": true | ||
}, | ||
"description": "List Projects for a user or organization", | ||
"inputSchema": { | ||
"properties": { | ||
"owner": { | ||
"description": "Owner login (user or organization)", | ||
"type": "string" | ||
}, | ||
"owner_type": { | ||
"description": "Owner type", | ||
"enum": [ | ||
"user", | ||
"organization" | ||
], | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"owner" | ||
], | ||
"type": "object" | ||
}, | ||
"name": "list_projects" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"annotations": { | ||
"title": "Update project item field", | ||
"readOnlyHint": false | ||
}, | ||
"description": "Update a project item field", | ||
"inputSchema": { | ||
"properties": { | ||
"field_id": { | ||
"description": "Field ID", | ||
"type": "string" | ||
}, | ||
"item_id": { | ||
"description": "Item ID", | ||
"type": "string" | ||
}, | ||
"project_id": { | ||
"description": "Project ID", | ||
"type": "string" | ||
}, | ||
"text_value": { | ||
"description": "Text value", | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"project_id", | ||
"item_id", | ||
"field_id" | ||
], | ||
"type": "object" | ||
}, | ||
"name": "update_project_item_field" | ||
} |
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.