We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf40fed commit 9a6bd4dCopy full SHA for 9a6bd4d
.github/index.pkl
@@ -65,6 +65,9 @@ local testJob: Workflow.Job = new {
65
local publishJob: Workflow.Job = new {
66
name = "Generate and publish docs"
67
`runs-on` = "ubuntu-latest"
68
+ permissions {
69
+ contents = "write"
70
+ }
71
steps {
72
new Common.Checkout {
73
with {
.github/workflows/main.yml
@@ -16,6 +16,8 @@ permissions:
16
jobs:
17
build-and-publish-docs:
18
name: Generate and publish docs
19
+ permissions:
20
+ contents: write
21
runs-on: ubuntu-latest
22
steps:
23
- uses: actions/checkout@v5
0 commit comments