We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b871f76 commit ae163adCopy full SHA for ae163ad
1 file changed
.github/workflows/build.yml
@@ -1,5 +1,14 @@
1
name: build
2
3
+# Default to 'contents: read', which grants actions to read commits.
4
+#
5
+# If any permission is set, any permission not included in the list is
6
+# implicitly set to "none".
7
8
+# see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
9
+permissions:
10
+ contents: read
11
+
12
concurrency:
13
group: ${{ github.workflow }}-${{ github.ref }}
14
cancel-in-progress: true
@@ -136,6 +145,9 @@ jobs:
136
145
137
146
build:
138
147
runs-on: ubuntu-24.04
148
+ permissions:
149
+ # required to create GitHub release
150
+ contents: write
139
151
steps:
140
152
-
141
153
name: Checkout
0 commit comments