> ## 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 list

List GitHub Actions jobs.

`nsc github job list` shows the GitHub Actions jobs that ran on Namespace runners in your workspace, together with their repository, workflow, status, and creation time. Use [nsc github job describe](/docs/reference/cli/github-job-describe) to see the full details of a specific job, including the instance it ran on.

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

## Usage

```bash theme={null}
nsc github job list [flags]
```

### Examples

**List recent jobs:**

```bash theme={null}
nsc github job list
```

**List jobs as JSON:**

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

**Filter by repository and time window:**

```bash theme={null}
nsc github job list --repository owner/repo --since 24h
```

**Show only jobs that are currently running:**

```bash theme={null}
nsc github job list --running
```

## Optional Flags

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

Output format. Default: `plain`.

Supported values: `plain`, `json`.

<h3 id="--max_entries-int">
  \--max\_entries int
</h3>

Maximum number of jobs to return. Default: `50`.

<h3 id="--repository-string">
  \--repository string
</h3>

Filter by repository, for example `owner/repo`.

<h3 id="--conclusion-string">
  \--conclusion string
</h3>

Filter by conclusion, for example `success`, `failure`, or `cancelled`.

<h3 id="--sender_login-string">
  \--sender\_login string
</h3>

Filter by the GitHub login of the user who triggered the workflow.

<h3 id="--since-duration">
  \--since duration
</h3>

Filter jobs created after this duration ago, for example `24h` or `7d`.

<h3 id="--pending">
  \--pending
</h3>

Only show jobs that have not started yet.

<h3 id="--running">
  \--running
</h3>

Only show jobs that are currently running (started but not finished).

## Related Topics

* [nsc github job describe](/docs/reference/cli/github-job-describe) - Show details for a specific job
