From ecfdce7ab48606cdd810d9f2519408ee2f67bf6f Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Fri, 12 Sep 2025 14:57:03 +0200 Subject: [PATCH 1/2] Fix inaccurate documentation about logical OR/AND label filtering for pull requests (#57523) Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: canuckjacq <11161530+canuckjacq@users.noreply.github.com> --- .../filtering-and-searching-issues-and-pull-requests.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/issues/tracking-your-work-with-issues/using-issues/filtering-and-searching-issues-and-pull-requests.md b/content/issues/tracking-your-work-with-issues/using-issues/filtering-and-searching-issues-and-pull-requests.md index d9b87e0497b8..f01de416776f 100644 --- a/content/issues/tracking-your-work-with-issues/using-issues/filtering-and-searching-issues-and-pull-requests.md +++ b/content/issues/tracking-your-work-with-issues/using-issues/filtering-and-searching-issues-and-pull-requests.md @@ -216,7 +216,7 @@ With issue and pull request search terms, you can: * Filter out search terms by using `-` before the term: `state:open type:issue -author:octocat` > [!TIP] -> You can filter issues and pull requests by label using logical OR or using logical AND. +> You can filter issues by label using logical OR or using logical AND. > * To filter issues using logical OR, use the comma syntax: `label:"bug","wip"`. > * To filter issues using logical AND, use separate label filters: `label:"bug" label:"wip"`. From 2d8b1f0d0cb99f07ac7b535c715c7d2a21385e78 Mon Sep 17 00:00:00 2001 From: eric sciple Date: Fri, 12 Sep 2025 08:17:37 -0500 Subject: [PATCH 2/2] Add Actions `job.check_run_id` expression context (#57502) --- content/actions/reference/workflows-and-actions/contexts.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/content/actions/reference/workflows-and-actions/contexts.md b/content/actions/reference/workflows-and-actions/contexts.md index bf278a4a4696..6e9844669b9b 100644 --- a/content/actions/reference/workflows-and-actions/contexts.md +++ b/content/actions/reference/workflows-and-actions/contexts.md @@ -364,6 +364,9 @@ The `job` context contains information about the currently running job. | Property name | Type | Description | |---------------|------|-------------| | `job` | `object` | This context changes for each job in a workflow run. You can access this context from any step in a job. This object contains all the properties listed below. | +| {% ifversion fpt or ghec %} | +| `job.check_run_id` | `number` | The check run ID of the current job. | +| {% endif %} | | `job.container` | `object` | Information about the job's container. For more information about containers, see [AUTOTITLE](/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idcontainer). | | `job.container.id` | `string` | The ID of the container. | | `job.container.network` | `string` | The ID of the container network. The runner creates the network used by all containers in a job. |