The porter job runs command allows users to view the job runs for a project, with optional filters applied. The returned job runs will be sorted by creation time, with the most recent job runs appearing first.
Copy
porter job runs [JOB_NAME]
The following flags can be used to filter the job runs:
Copy
# --job:# filter job runs by job nameporter job runs --job [JOB_NAME]# --app:# filter job runs by application nameporter job runs --app [APP_NAME]# --revision:# filter job runs by revision number (requires --app)porter job runs --app [APP_NAME] --revision [REVISION_NUMBER]# --target:# filter job runs by deployment target, will use the default target if not provided# can pass "ALL" to pull runs across all deployment targetsporter job runs --target [TARGET_NAME]# --status:# filter job runs by statusporter job runs --status [STATUS]# --limit:# limit the number of job runs returned, defaults to 100porter job runs --limit [LIMIT]