From d070f1882d8d2fab73b96e30d1ef960105303456 Mon Sep 17 00:00:00 2001 From: Yukai Chou Date: Fri, 3 Oct 2025 13:03:40 +0800 Subject: [PATCH] Update job context example to include check_run_id Added 'check_run_id' property to job context example. --- content/actions/reference/workflows-and-actions/contexts.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/actions/reference/workflows-and-actions/contexts.md b/content/actions/reference/workflows-and-actions/contexts.md index 6e9844669b9b..fda0416bc373 100644 --- a/content/actions/reference/workflows-and-actions/contexts.md +++ b/content/actions/reference/workflows-and-actions/contexts.md @@ -378,11 +378,12 @@ The `job` context contains information about the currently running job. ### Example contents of the `job` context -This example `job` context uses a PostgreSQL service container with mapped ports. If there are no containers or service containers used in a job, the `job` context only contains the `status` property. +This example `job` context uses a PostgreSQL service container with mapped ports. If there are no containers or service containers used in a job, the `job` context only contains the `status` and `check_run_id` properties. ```json { "status": "success", + {% ifversion fpt or ghec %}"check_run_id": 51725241954,{% endif %} "container": { "network": "github_network_53269bd575974817b43f4733536b200c" },