Skip to content

Commit 9773e00

Browse files
committed
feat: add required permissions for workflow artifact handling
1 parent d12515d commit 9773e00

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/generate-examples.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ on:
2222
release:
2323
types: [published]
2424

25+
# Required permissions for the workflow
26+
permissions:
27+
actions: read # Required for downloading workflow artifacts
28+
contents: read # Required for checking out repository
29+
id-token: write # Required for uploading artifacts
30+
2531
# Cancel previous runs if a new push happens
2632
concurrency:
2733
group: ${{ github.workflow }}-${{ github.ref }}

0 commit comments

Comments
 (0)