nsc github job list
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 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
nsc github job list [flags]Examples
List recent jobs:
$ nsc github job listList jobs as JSON:
$ nsc github job list -o jsonFilter by repository and time window:
$ nsc github job list --repository owner/repo --since 24hShow only jobs that are currently running:
$ nsc github job list --runningOptional Flags
-o, --output string
Output format. Default: plain.
Supported values: plain, json.
--max_entries int
Maximum number of jobs to return. Default: 50.
--repository string
Filter by repository, for example owner/repo.
--conclusion string
Filter by conclusion, for example success, failure, or cancelled.
--sender_login string
Filter by the GitHub login of the user who triggered the workflow.
--since duration
Filter jobs created after this duration ago, for example 24h or 7d.
--pending
Only show jobs that have not started yet.
--running
Only show jobs that are currently running (started but not finished).
Related Topics
- nsc github job describe - Show details for a specific job

