Skip to content

Commit b1c713b

Browse files
authored
Branch was updated using the 'autoupdate branch' Actions workflow.
2 parents 7041bff + 6da68ce commit b1c713b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

content/actions/creating-actions/creating-a-javascript-action.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ git tag -a -m "My first action release" v1
176176
git push --follow-tags
177177
```
178178

179-
As an alternative to checking in your `node_modules` directory you can use a tool called [`@vercel/ncc`](https://github.com/vercel/ncc) to compile your code and modules into one file used for distribution.
179+
Checking in your `node_modules` directory can cause problems. As an alternative, you can use a tool called [`@vercel/ncc`](https://github.com/vercel/ncc) to compile your code and modules into one file used for distribution.
180180

181181
1. Install `vercel/ncc` by running this command in your terminal.
182182
`npm i -g @vercel/ncc`

content/actions/reference/events-that-trigger-workflows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ jobs:
139139

140140
| Webhook event payload | Activity types | `GITHUB_SHA` | `GITHUB_REF` |
141141
| ------------------ | ------------ | ------------ | ------------------|
142-
| [repository_dispatch](/webhooks/event-payloads/#repository_dispatch) | n/a | Last commit on the `GITHUB_REF` branch | Branch that received dispatch |
142+
| [repository_dispatch](/webhooks/event-payloads/#repository_dispatch) | n/a | Last commit on default branch | Default branch |
143143

144144
{% data reusables.github-actions.branch-requirement %}
145145

0 commit comments

Comments
 (0)