Skip to content

Commit 4ff8c99

Browse files
authored
Update table format
1 parent be7789b commit 4ff8c99

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

articles/container-apps/tutorial-ci-cd-runners-jobs.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,8 @@ To verify the job was configured correctly, you modify the workflow to use a sel
339339
az containerapp job execution list \
340340
--name "$JOB_NAME" \
341341
--resource-group "$RESOURCE_GROUP" \
342-
--output json
342+
--output table \
343+
--query '[].{Status: properties.status, Name: name, StartTime: properties.startTime}'
343344
```
344345

345346
::: zone-end
@@ -521,7 +522,8 @@ Before you can run a self-hosted agent in your new agent pool, you need to creat
521522
az containerapp job execution list \
522523
--name "$PLACEHOLDER_JOB_NAME" \
523524
--resource-group "$RESOURCE_GROUP" \
524-
--output json
525+
--output table \
526+
--query '[].{Status: properties.status, Name: name, StartTime: properties.startTime}'
525527
```
526528

527529
1. Verify the placeholder agent was created in Azure DevOps.
@@ -603,7 +605,8 @@ Now that you've configured a self-hosted agent job, you can run a pipeline and v
603605
az containerapp job execution list \
604606
--name "$JOB_NAME" \
605607
--resource-group "$RESOURCE_GROUP" \
606-
--output json
608+
--output table \
609+
--query '[].{Status: properties.status, Name: name, StartTime: properties.startTime}'
607610
```
608611
609612
::: zone-end

0 commit comments

Comments
 (0)