We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d8720cc + 7c20c82 commit 6763364Copy full SHA for 6763364
1 file changed
.github/workflows/build-on-push.yml
@@ -10,6 +10,9 @@ on:
10
branches:
11
- main
12
13
+permissions:
14
+ contents: write
15
+
16
jobs:
17
build:
18
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.merged == true)
@@ -18,6 +21,8 @@ jobs:
21
steps:
19
22
- name: Checkout repository
20
23
uses: actions/checkout@v3
24
+ with:
25
+ token: ${{ secrets.GITHUB_TOKEN }}
26
27
- name: Setup Node.js
28
uses: actions/setup-node@v3
0 commit comments