From 062973f722aebe5fb5ee668f3fc010b68f962d0c Mon Sep 17 00:00:00 2001 From: DJ Adams Date: Fri, 18 Dec 2020 09:14:54 +0000 Subject: [PATCH 1/2] include 'shell command' as a possible step task This page helped me greatly to understand all the component parts in GitHub Actions. One thing that is now clear to me is that there are two types of "task" that a step can actually be - either an action, or a shell command. This is explained in a couple of places in this page, but is notably missing in this "Understanding the workflow file" section. --- .../learn-github-actions/introduction-to-github-actions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/learn-github-actions/introduction-to-github-actions.md b/content/actions/learn-github-actions/introduction-to-github-actions.md index 455cac19cfa0..ea36259d7253 100644 --- a/content/actions/learn-github-actions/introduction-to-github-actions.md +++ b/content/actions/learn-github-actions/introduction-to-github-actions.md @@ -146,7 +146,7 @@ To help you understand how YAML syntax is used to create a workflow file, this s ``` - Groups together all the steps that run in the check-bats-version job. Each line nested under this section is a separate action. + Groups together all the steps that run in the check-bats-version job. Each line nested under this section is a separate action or shell command. From 2e23d9c8ae90c17f4572b0ea31f50eaec3f4cb0e Mon Sep 17 00:00:00 2001 From: Lucas Costi Date: Mon, 18 Jan 2021 14:51:24 +1000 Subject: [PATCH 2/2] Update content/actions/learn-github-actions/introduction-to-github-actions.md --- .../learn-github-actions/introduction-to-github-actions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/learn-github-actions/introduction-to-github-actions.md b/content/actions/learn-github-actions/introduction-to-github-actions.md index ea36259d7253..ad909d7cab20 100644 --- a/content/actions/learn-github-actions/introduction-to-github-actions.md +++ b/content/actions/learn-github-actions/introduction-to-github-actions.md @@ -146,7 +146,7 @@ To help you understand how YAML syntax is used to create a workflow file, this s ``` - Groups together all the steps that run in the check-bats-version job. Each line nested under this section is a separate action or shell command. + Groups together all the steps that run in the check-bats-version job. Each item nested under this section is a separate action or shell command.