We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ea6d222 + 130df2c commit a655c7aCopy full SHA for a655c7a
.github/workflows/ci.yml
@@ -4,6 +4,12 @@ on:
4
push:
5
branches: [main]
6
7
+permissions:
8
+ contents: read # for checkout and git clone
9
+ actions: write # for uploading artifacts if any (optional here)
10
+ workflows: write # if triggering other workflows (not used here, optional)
11
+ pull-requests: write # only if modifying PRs (not used here)
12
+
13
jobs:
14
ci:
15
runs-on: ubuntu-latest
.github/workflows/test.yml
@@ -6,6 +6,11 @@ on:
pull_request:
+ contents: read
+ actions: write
+ checks: write
lint-test:
16
0 commit comments