porter job contains commands for inspecting job runs in your project.
Prerequisites
- You’ve logged in to the Porter CLI after running porter auth login
- You’re connected to the correct project by running porter config set-project
porter job runs
View the job runs for a project, with optional filters applied. Job runs are sorted by creation time, with the most recent runs appearing first.
Usage:
| Flag | Description |
|---|---|
--job | Filter job runs by job name |
--app | Filter job runs by application name |
--revision | Filter job runs by revision number (requires --app) |
--target | Filter job runs by deployment target. Uses the default target if not provided; pass ALL to pull runs across all deployment targets |
--status | Filter job runs by status |
--limit | Limit the number of job runs returned (default: 100) |
The
--revision flag requires --app to be set, since revisions are scoped to a specific application.Related Commands
- porter app run - Trigger a job with the
--jobflag - porter target list - List deployment targets to filter runs by

