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 00e300f + ba939c1 commit 6ecca36Copy full SHA for 6ecca36
.github/workflows/publish.yml
@@ -8,12 +8,20 @@ on:
8
# Allows us to run this workflow manually from the Actions tab
9
workflow_dispatch:
10
11
+permissions:
12
+ contents: read # for checkout
13
+
14
jobs:
15
# Single deploy job since we're just deploying
16
publish:
17
environment:
18
name: Deploy
19
runs-on: ubuntu-latest
20
+ permissions:
21
+ contents: write # to be able to publish a GitHub release
22
+ issues: write # to be able to comment on released issues
23
+ pull-requests: write # to be able to comment on pull requests
24
+ id-token: write # to enable use of ODIC for npm provenance
25
steps:
26
# Checkout to branch
27
- name: Checkout
0 commit comments