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: pkg/github/__toolsnaps__/actions_list.snap
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,6 @@
6
6
"description": "Tools for listing GitHub Actions resources.\nUse this tool to list workflows in a repository, or list workflow runs, jobs, and artifacts for a specific workflow or workflow run.\n",
7
7
"inputSchema": {
8
8
"type": "object",
9
-
"required": [
10
-
"method",
11
-
"owner",
12
-
"repo"
13
-
],
14
9
"properties": {
15
10
"method": {
16
11
"type": "string",
@@ -43,11 +38,10 @@
43
38
},
44
39
"resource_id": {
45
40
"type": "string",
46
-
"description": "The unique identifier of the resource. This will vary based on the \"method\" provided, so ensure you provide the correct ID:\n- Do not provide any resource ID for 'list_workflows' method.\n- Provide a workflow ID or workflow file name (e.g. ci.yaml) for 'list_workflow_runs' method.\n- Provide a workflow run ID for 'list_workflow_jobs' and 'list_workflow_run_artifacts' methods.\n"
41
+
"description": "The unique identifier of the resource. This will vary based on the \"method\" provided, so ensure you provide the correct ID:\n- Do not provide any resource ID for 'list_workflows' method.\n- Provide a workflow ID or workflow file name (e.g. ci.yaml) for 'list_workflow_runs' method, or omit to list all workflow runs in the repository.\n- Provide a workflow run ID for 'list_workflow_jobs' and 'list_workflow_run_artifacts' methods.\n"
47
42
},
48
43
"workflow_jobs_filter": {
49
44
"type": "object",
50
-
"description": "Filters for workflow jobs. **ONLY** used when method is 'list_workflow_jobs'",
51
45
"properties": {
52
46
"filter": {
53
47
"type": "string",
@@ -57,11 +51,11 @@
57
51
"all"
58
52
]
59
53
}
60
-
}
54
+
},
55
+
"description": "Filters for workflow jobs. **ONLY** used when method is 'list_workflow_jobs'"
61
56
},
62
57
"workflow_runs_filter": {
63
58
"type": "object",
64
-
"description": "Filters for workflow runs. **ONLY** used when method is 'list_workflow_runs'",
65
59
"properties": {
66
60
"actor": {
67
61
"type": "string",
@@ -120,9 +114,15 @@
120
114
"waiting"
121
115
]
122
116
}
123
-
}
117
+
},
118
+
"description": "Filters for workflow runs. **ONLY** used when method is 'list_workflow_runs'"
0 commit comments