You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -752,6 +752,7 @@ The following sets of tools are available:
752
752
-**assign_copilot_to_issue** - Assign Copilot to issue
753
753
-**Required OAuth Scopes**: `repo`
754
754
-`base_ref`: Git reference (e.g., branch) that the agent will start its work from. If not specified, defaults to the repository's default branch (string, optional)
755
+
-`custom_instructions`: Optional custom instructions to guide the agent beyond the issue body. Use this to provide additional context, constraints, or guidance that is not captured in the issue description (string, optional)
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/actions_get.snap
+16-16Lines changed: 16 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -5,16 +5,8 @@
5
5
},
6
6
"description": "Get details about specific GitHub Actions resources.\nUse this tool to get details about individual workflows, workflow runs, jobs, and artifacts by their unique IDs.\n",
7
7
"inputSchema": {
8
-
"type": "object",
9
-
"required": [
10
-
"method",
11
-
"owner",
12
-
"repo",
13
-
"resource_id"
14
-
],
15
8
"properties": {
16
9
"method": {
17
-
"type": "string",
18
10
"description": "The method to execute",
19
11
"enum": [
20
12
"get_workflow",
@@ -23,21 +15,29 @@
23
15
"download_workflow_run_artifact",
24
16
"get_workflow_run_usage",
25
17
"get_workflow_run_logs_url"
26
-
]
18
+
],
19
+
"type": "string"
27
20
},
28
21
"owner": {
29
-
"type": "string",
30
-
"description": "Repository owner"
22
+
"description": "Repository owner",
23
+
"type": "string"
31
24
},
32
25
"repo": {
33
-
"type": "string",
34
-
"description": "Repository name"
26
+
"description": "Repository name",
27
+
"type": "string"
35
28
},
36
29
"resource_id": {
37
-
"type": "string",
38
-
"description": "The unique identifier of the resource. This will vary based on the \"method\" provided, so ensure you provide the correct ID:\n- Provide a workflow ID or workflow file name (e.g. ci.yaml) for 'get_workflow' method.\n- Provide a workflow run ID for 'get_workflow_run', 'get_workflow_run_usage', and 'get_workflow_run_logs_url' methods.\n- Provide an artifact ID for 'download_workflow_run_artifact' method.\n- Provide a job ID for 'get_workflow_job' method.\n"
30
+
"description": "The unique identifier of the resource. This will vary based on the \"method\" provided, so ensure you provide the correct ID:\n- Provide a workflow ID or workflow file name (e.g. ci.yaml) for 'get_workflow' method.\n- Provide a workflow run ID for 'get_workflow_run', 'get_workflow_run_usage', and 'get_workflow_run_logs_url' methods.\n- Provide an artifact ID for 'download_workflow_run_artifact' method.\n- Provide a job ID for 'get_workflow_job' method.\n",
0 commit comments