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

# nsc github job describe

Show details for a specific GitHub Actions job.

`nsc github job describe` prints the full details of a single GitHub Actions job, identified by its numeric job ID. The output includes the repository, workflow, job name, status, and timing, along with the runner it executed on — including the instance ID, container name, and runner name.

Pass `-o json` to get a machine-readable representation. Use [nsc github job list](/docs/reference/cli/github-job-list) to find job IDs.

The `job` command is also available under its previous name `jobs`.

## Usage

```bash theme={null}
nsc github job describe <job-id> [flags]
```

### Examples

**Describe a job:**

```bash theme={null}
nsc github job describe 123456789
```

**Describe a job as JSON:**

```bash theme={null}
nsc github job describe 123456789 -o json
```

## Arguments

### \<job-id>

The numeric ID of the job to describe. Use [nsc github job list](/docs/reference/cli/github-job-list) to see available job IDs.

## Optional Flags

<h3 id="-o---output-string">
  -o, --output string
</h3>

Output format. Default: `plain`.

Supported values: `plain`, `json`.

## Related Topics

* [nsc github job list](/docs/reference/cli/github-job-list) - List GitHub Actions jobs
