Skip to content

Commit 37b2dc7

Browse files
authored
Fix typo in permission name (github#8132)
1 parent 096329e commit 37b2dc7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

content/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/automating-dependabot-with-github-actions.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ on: pull_request_target
254254
255255
permissions:
256256
pull-requests: write
257-
content: write
257+
contents: write
258258
259259
jobs:
260260
dependabot:
@@ -271,6 +271,7 @@ jobs:
271271
run: gh pr merge --auto --merge "$PR_URL"
272272
env:
273273
PR_URL: ${{github.event.pull_request.html_url}}
274+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
274275
```
275276
{% endraw %}
276277

0 commit comments

Comments
 (0)