You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -19,7 +19,7 @@ The GitHub API [token](https://docs.github.com/en/github/authenticating-to-githu
19
19
20
20
> 💡 **Note:** Ensure the token you are using has sufficient permissions to fork repositories into your intended destination (either an organization or individual user account). In particular, the builtin `GITHUB_TOKEN` has [read-only permissions](https://docs.github.com/en/actions/reference/authentication-in-a-workflow#permissions-for-the-github_token) for repository forks, and therefore may not provide sufficient privileges for use with `forker`.
21
21
22
-
**Example:**`${{ secrets.GH_API_TOKEN }}`
22
+
**Example:**`${{ secrets.ACCESS_TOKEN }}`
23
23
24
24
### `owner` (string, required)
25
25
@@ -69,12 +69,12 @@ A newline-delimited (`"\n"`) string representing a list of allowed [license keys
69
69
70
70
### Typical
71
71
72
-
In most cases, you'll want to use the latest stable version (eg. `v0.0.1`):
72
+
In most cases, you'll want to use the latest stable version (eg. `v0.0.2`):
@@ -146,7 +146,7 @@ Then run [ncc](https://github.com/zeit/ncc) and push the results:
146
146
npm run package
147
147
git add dist
148
148
git commit -a -m "prod dependencies"
149
-
git push origin releases/v0.0.1
149
+
git push origin releases/v0.0.2
150
150
```
151
151
152
152
> 💡 **Note:** We recommend using the `--license` option for `ncc`, which will create a license file for all of the production node modules used in your project.
@@ -163,7 +163,7 @@ You can now validate the action by referencing `./` in a workflow in your repo (
0 commit comments