Skip to content

Commit d8ebfb5

Browse files
committed
incorporating Glenn's changes
1 parent 0ee11ed commit d8ebfb5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/azure-functions/functions-how-to-github-actions.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Setting up the environment can be done using one of the publish setup actions.
6262
|**JavaScript** | `actions/setup-node` |
6363
|**Python** | `actions/setup-python` |
6464

65-
A snippet from the yaml file for:
65+
The following example is a fragment of the .yaml file for a function app that uses:
6666

6767
**JavaScript**
6868

@@ -122,9 +122,9 @@ A snippet from the yaml file for:
122122
123123
This depends on the language and for languages supported by Azure Functions, this section should be the standard build steps of each language.
124124
125-
A snippet from the yaml file for:
125+
The following example is a fragment of the .yaml file for a function app that uses:
126126
127-
**JavaScript app**
127+
**JavaScript**
128128
129129
```yaml
130130
- name: 'Run npm'
@@ -190,7 +190,7 @@ To deploy your code to a function app, you will need to use the `Azure/functions
190190
|_**slot-name**_ | (Optional) The name of the [deployment slot](functions-deployment-slots.md) you want to deploy to. The slot must already be defined in your function app. |
191191

192192

193-
The following snippet show how to use version 1 of the action
193+
The following example uses version 1 of the `functions-action`:
194194

195195
```yaml
196196
- name: 'Run Azure Functions Action'
@@ -202,7 +202,7 @@ The following snippet show how to use version 1 of the action
202202

203203
## Next steps
204204

205-
There are a number of samples available in the [Azure GitHub Actions workflow samples repo](https://github.com/Azure/actions-workflow-samples). You can use these samples a starting point for your workflow.
205+
To view a complete workflow .yaml, see one of the files in the [Azure GitHub Actions workflow samples repo](https://github.com/Azure/actions-workflow-samples) that have `functionapp` in the name. You can use these samples a starting point for your workflow.
206206

207207
> [!div class="nextstepaction"]
208208
> [Learn more about GitHub Actions](https://help.github.com/en/articles/about-github-actions)

0 commit comments

Comments
 (0)