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 to find job IDs.

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

Usage

nsc github job describe <job-id> [flags]

Examples

Describe a job:

$ nsc github job describe 123456789

Describe a job as JSON:

$ nsc github job describe 123456789 -o json

Arguments

<job-id>

The numeric ID of the job to describe. Use nsc github job list to see available job IDs.

Optional Flags

-o, --output string

Output format. Default: plain.

Supported values: plain, json.

Last updated