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
"title": "Get details of GitHub Actions resources (workflows, workflow runs, jobs, and artifacts)"
5
+
},
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
+
"inputSchema": {
8
+
"type": "object",
9
+
"required": [
10
+
"method",
11
+
"owner",
12
+
"repo",
13
+
"resource_id"
14
+
],
15
+
"properties": {
16
+
"method": {
17
+
"type": "string",
18
+
"description": "The method to execute",
19
+
"enum": [
20
+
"get_workflow",
21
+
"get_workflow_run",
22
+
"get_workflow_job",
23
+
"download_workflow_run_artifact",
24
+
"get_workflow_run_usage",
25
+
"get_workflow_run_logs_url"
26
+
]
27
+
},
28
+
"owner": {
29
+
"type": "string",
30
+
"description": "Repository owner"
31
+
},
32
+
"repo": {
33
+
"type": "string",
34
+
"description": "Repository name"
35
+
},
36
+
"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"
0 commit comments