Skip to content

Commit f69af73

Browse files
authored
Branch was updated using the 'autoupdate branch' Actions workflow.
2 parents 91ce568 + 8a4007d commit f69af73

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

content/actions/learn-github-actions/introduction-to-github-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ To help you understand how YAML syntax is used to create a workflow file, this s
147147
```
148148
</td>
149149
<td>
150-
Groups together all the steps that run in the <code>check-bats-version</code> job. Each line nested under this section is a separate action.
150+
Groups together all the steps that run in the <code>check-bats-version</code> job. Each item nested under this section is a separate action or shell command.
151151
</td>
152152
</tr>
153153
<tr>

content/actions/reference/workflow-syntax-for-github-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ You can set the `shell` value to a template string using `command […options] {
705705
For built-in shell keywords, we provide the following defaults that are executed by {% data variables.product.prodname_dotcom %}-hosted runners. You should use these guidelines when running shell scripts.
706706

707707
- `bash`/`sh`:
708-
- Fail-fast behavior using `set -e o pipefail`: Default for `bash` and built-in `shell`. It is also the default when you don't provide an option on non-Windows platforms.
708+
- Fail-fast behavior using `set -eo pipefail`: Default for `bash` and built-in `shell`. It is also the default when you don't provide an option on non-Windows platforms.
709709
- You can opt out of fail-fast and take full control by providing a template string to the shell options. For example, `bash {0}`.
710710
- sh-like shells exit with the exit code of the last command executed in a script, which is also the default behavior for actions. The runner will report the status of the step as fail/succeed based on this exit code.
711711

0 commit comments

Comments
 (0)