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. | 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"`.