1
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2024-09-19 08:56:41 +00:00

docs(readme): add permissions in push example

A reminder about the required privilege to push would benefit the example of pushing with the built-in token IMHO.
This commit is contained in:
Louis Bompart 2024-06-12 02:44:40 -04:00 committed by GitHub
parent b80ff79f17
commit fad8fd9f21
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: B5690EEEBB952194

View file

@ -272,6 +272,9 @@ jobs:
```yaml
on: push
# `contents:write` permission must be granted to the built-in token, see https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs
permissions:
contents: write #Require
jobs:
build:
runs-on: ubuntu-latest