We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1abfe4b commit fef8a72Copy full SHA for fef8a72
.github/workflows/deploy.yml
@@ -62,6 +62,12 @@ jobs:
62
runs-on: ubuntu-latest
63
if: github.event_name == 'pull_request'
64
needs: [build]
65
+ # Specify write permissions explicitly to make dependabot PRs happy:
66
+ # https://github.com/dependabot/dependabot-core/issues/3253#issuecomment-940182533
67
+ # This is okay in this job because we don't execute any external code (e.g. npm export).
68
+ permissions:
69
+ contents: write
70
+ pull-requests: write
71
steps:
72
- uses: actions/checkout@v2
73
0 commit comments