Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions content/actions/reference/workflows-and-actions/contexts.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"`.

Expand Down
Loading