We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f16debb commit cf6dd81Copy full SHA for cf6dd81
.github/workflows/release.yml
@@ -6,6 +6,13 @@ name: Release
6
- next
7
- beta
8
- "*.x"
9
+# These are recommended by the semantic-release docs: https://github.com/semantic-release/npm#npm-provenance
10
+permissions:
11
+ contents: write # to be able to publish a GitHub release
12
+ issues: write # to be able to comment on released issues
13
+ pull-requests: write # to be able to comment on released pull requests
14
+ id-token: write # to enable use of OIDC for npm provenance
15
+
16
jobs:
17
release:
18
name: release
package.json
@@ -1,7 +1,8 @@
1
{
2
"name": "@octokit/auth-app",
3
"publishConfig": {
4
- "access": "public"
+ "access": "public",
5
+ "provenance": true
},
"version": "0.0.0-development",
"description": "GitHub App authentication for JavaScript",
0 commit comments