> ## Documentation Index
> Fetch the complete documentation index at: https://docs.r28.ai/charter/llms.txt
> Use this file to discover all available pages before exploring further.

# actions_get_job

> Get one job of a workflow run, with the steps that did not pass named individually and the runner it ran on.

<div className="tool-route"><span className="tool-row-method" data-method="GET">GET</span><code>{"https://api.github.com/repos/{owner}/{repo}/actions/jobs/{jobId}"}</code></div>

```python github_actions_get_job.py theme={null}
from charter.packs import github

result = await github.actions_get_job.ainvoke({"owner": ..., "repo": ..., "jobId": ...})
```

<Note>
  Requires `repo`, `read:user`.
</Note>

## Path parameters

<div className="reference-table">
  | Field                                                         | Type      | Description                                                                                                                   |
  | ------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------------- |
  | `owner` <span className="required" title="required">\*</span> | `string`  | The account owner of the repository. The name is not case sensitive.                                                          |
  | `repo` <span className="required" title="required">\*</span>  | `string`  | The name of the repository without the `.git` extension. The name is not case sensitive.                                      |
  | `jobId` <span className="required" title="required">\*</span> | `integer` | The unique identifier of the job. This is the job's `id` from `actions_list_jobs_for_run`, not its name and not the run's id. |
</div>
