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__/get_job_logs.snap
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,17 @@
1
1
{
2
2
"annotations": {
3
3
"readOnlyHint": true,
4
-
"title": "Get job logs"
4
+
"title": "Get GitHub Actions workflow job logs"
5
5
},
6
-
"description": "Download logs for a specific workflow job or efficiently get all failed job logs for a workflow run",
6
+
"description": "Get logs for GitHub Actions workflow jobs.\nUse this tool to retrieve logs for a specific job or all jobs in a workflow run.\nProvide job_id for one job, or run_id for all jobs in a run. Set failed_only=true to restrict either mode to failed jobs only.\n",
7
7
"inputSchema": {
8
8
"properties": {
9
9
"failed_only": {
10
-
"description": "When true, gets logs for all failedjobs in run_id",
10
+
"description": "When true, only returns logs for failed jobs. With job_id, the job must have failed. With run_id, only failed jobs in the run are included.",
11
11
"type": "boolean"
12
12
},
13
13
"job_id": {
14
-
"description": "The unique identifier of the workflow job (required for single job logs)",
14
+
"description": "The unique identifier of the workflow job. Provide either job_id or run_id, not both.",
15
15
"type": "number"
16
16
},
17
17
"owner": {
@@ -27,7 +27,7 @@
27
27
"type": "boolean"
28
28
},
29
29
"run_id": {
30
-
"description": "Workflow run ID (required when using failed_only)",
30
+
"description": "The unique identifier of the workflow run. Provide either run_id or job_id, not both.",
0 commit comments