Skip to content

Commit b5081ec

Browse files
Add missing 'skipped' option to needs (#411)
Co-authored-by: Lucas Costi <lucascosti@users.noreply.github.com>
1 parent a375847 commit b5081ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/actions/reference/context-and-expression-syntax-for-github-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ The `needs` context contains outputs from all jobs that are defined as a depende
164164
| `needs.<job id>` | `object` | A single job that the current job depends on. |
165165
| `needs.<job id>.outputs` | `object` | The set of outputs of a job that the current job depends on. |
166166
| `needs.<job id>.outputs.<output name>` | `string` | The value of a specific output for a job that the current job depends on. |
167-
| `needs.<job id>.result` | `string` | The result of a job that the current job depends on. Possible values are `success`, `failure`, or `cancelled`. |
167+
| `needs.<job id>.result` | `string` | The result of a job that the current job depends on. Possible values are `success`, `failure`, `cancelled`, or `skipped`. |
168168

169169
#### Example printing context information to the log file
170170

0 commit comments

Comments
 (0)