Specify required permissions in README (#164)

This commit is contained in:
Dane Powell 2021-09-27 12:55:09 -07:00 committed by GitHub
parent 6034af24fb
commit a80139913a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -208,4 +208,15 @@ The following `step.env` keys are allowed as a fallback but deprecated in favor
> **⚠️ Note:** This action was previously implemented as a Docker container, limiting its use to GitHub Actions Linux virtual environments only. With recent releases, we now support cross platform usage. You'll need to remove the `docker://` prefix in these versions
### Permissions
This Action requires the following permissions on the GitHub integration token:
```yaml
permissions:
contents: write
```
[GitHub token permissions](https://docs.github.com/en/actions/security-guides/automatic-token-authentication#permissions-for-the-github_token) can be set for an individual job, workflow, or for Actions as a whole.
Doug Tangren (softprops) 2019