There was an error while loading. Please reload this page.
1 parent 6b53e59 commit c9db5d7Copy full SHA for c9db5d7
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