We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21a4b80 commit 66d6b38Copy full SHA for 66d6b38
2 files changed
.github/workflows/main.yml
@@ -6,6 +6,9 @@ on:
6
- main
7
- beta
8
9
+permissions:
10
+ contents: read
11
+
12
jobs:
13
Install:
14
runs-on: ubuntu-latest
@@ -104,6 +107,10 @@ jobs:
104
107
Release:
105
108
# Prevent infinite release loop
106
109
if: ${{ !startsWith(github.event.head_commit.message, 'chore(release)') }}
110
+ permissions:
111
+ contents: write
112
+ issues: write
113
+ pull_requests: write
114
needs:
115
- Lint
116
- Typecheck
.github/workflows/release.yml
@@ -8,6 +8,9 @@ on:
# Beta release tags, e.g. "v3.0.0-beta.1"
- 'v[0-9]+.[0-9]+.[0-9]+-beta.[0-9]+'
15
16
0 commit comments