File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,9 @@ concurrency:
31
31
group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
32
32
cancel-in-progress : true
33
33
34
+ permissions :
35
+ contents : read # for checkout
36
+
34
37
jobs :
35
38
# log-the-inputs:
36
39
# runs-on: ubuntu-latest
95
98
# echo "$NEEDS"
96
99
97
100
release :
101
+ permissions :
102
+ contents : write # to be able to publish a GitHub release
103
+ issues : write # to be able to comment on released issues
104
+ pull-requests : write # to be able to comment on released pull requests
105
+ id-token : write # to enable use of OIDC for npm provenance
98
106
needs : test
99
107
# only run if opt-in during workflow_dispatch
100
108
# needs.test.result: 'success' | 'failure' | 'skipped' | 'cancelled'
Original file line number Diff line number Diff line change 68
68
"node" : " >=18"
69
69
},
70
70
"publishConfig" : {
71
- "access" : " public"
71
+ "access" : " public" ,
72
+ "provenance" : true
72
73
}
73
74
}
You can’t perform that action at this time.
0 commit comments