v50

latestOpenAPI 3.0.3MITraw.githubusercontent.com2024-01-0382859610.0 MB
actions

List jobs for a workflow run attempt

Lists jobs for a specific workflow run attempt. Anyone with read access to the repository can use this endpoint. If the repository is private you must use an access token with the repo scope. GitHub Apps must have the actions:read permission to use this endpoint. You can use parameters to narrow the list of results. For more information about using parameters, see Parameters.

get/repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs

Path parameters

ownerstring required

The account owner of the repository. The name is not case sensitive.

repostring required

The name of the repository without the .git extension. The name is not case sensitive.

run_idinteger required

The unique identifier of the workflow run.

attempt_numberinteger required

The attempt number of the workflow run.

Query parameters

per_pageinteger

The number of results per page (max 100). For more information, see "Using pagination in the REST API."

pageinteger

The page number of the results to fetch. For more information, see "Using pagination in the REST API."

Response

Response

total_countinteger required

Example response

{
  "jobs": [
    {
      "id": 21,
      "run_id": 5,
      "run_url": "https://api.github.com/repos/github/hello-world/actions/runs/5",
      "run_attempt": 1,
      "node_id": "MDg6Q2hlY2tSdW40",
      "head_sha": "009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d",
      "url": "https://api.github.com/repos/github/hello-world/actions/jobs/21",
      "html_url": "https://github.com/github/hello-world/runs/4",
      "status": "queued",
      "conclusion": "success",
      "started_at": "2019-08-08T08:00:00-07:00",
      "completed_at": "2019-08-08T08:00:00-07:00",
      "name": "test-coverage",
      "steps": [
        {
          "status": "queued",
          "conclusion": "success",
          "name": "test-coverage",
          "number": 1,
          "started_at": "2019-08-08T08:00:00-07:00",
          "completed_at": "2019-08-08T08:00:00-07:00"
        }
      ],
      "check_run_url": "https://api.github.com/repos/github/hello-world/check-runs/4",
      "labels": [
        "self-hosted",
        "foo",
        "bar"
      ],
      "runner_id": 1,
      "runner_name": "my runner",
      "runner_group_id": 2,
      "runner_group_name": "my runner group"
    }
  ]
}