We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a99334f commit 8200bb2Copy full SHA for 8200bb2
2 files changed
.github/workflows/trigger-deploy-on-comment.yml
@@ -2,6 +2,7 @@ name: Trigger deploy on comment
2
on:
3
issue_comment:
4
types: [created]
5
+permissions: read-all
6
jobs:
7
if_merged:
8
if: github.event.issue.pull_request && contains(github.event.comment.body, '/deploy')
.github/workflows/website-pr-validation.yml
@@ -9,6 +9,7 @@ on:
9
10
lint:
11
runs-on: ubuntu-latest
12
+ permissions: read-all
13
steps:
14
- name: Checkout repo
15
uses: actions/checkout@v3
@@ -40,6 +41,10 @@ jobs:
40
41
validate:
42
43
needs: lint
44
+ permissions:
45
+ contents: read
46
+ pull-requests: write
47
+ actions: write
48
49
- name: Checkout fork
50
0 commit comments