We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe12e5b commit acedf31Copy full SHA for acedf31
.github/workflows/validate.yml
@@ -12,8 +12,14 @@ on:
12
- 'alpha'
13
- '!all-contributors/**'
14
pull_request: {}
15
+
16
+permissions: {}
17
18
jobs:
19
main:
20
+ permissions:
21
+ actions: write # to cancel/stop running workflows (styfle/cancel-workflow-action)
22
+ contents: read # to fetch code (actions/checkout)
23
# ignore all-contributors PRs
24
if: ${{ !contains(github.head_ref, 'all-contributors') }}
25
strategy:
@@ -56,6 +62,10 @@ jobs:
56
62
flags: node-${{ matrix.node }}
57
63
58
64
release:
65
66
67
+ contents: write # to create release tags (cycjimmy/semantic-release-action)
68
59
69
needs: main
60
70
runs-on: ubuntu-latest
61
71
if:
0 commit comments