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.
1 parent a000b14 commit 230378aCopy full SHA for 230378a
1 file changed
.github/workflows/publish.yml
@@ -16,6 +16,7 @@ jobs:
16
version:
17
name: Version
18
runs-on: ubuntu-latest
19
+ environment: version
20
timeout-minutes: 10
21
outputs:
22
hasChangesets: ${{ steps.changesets.outputs.hasChangesets }}
@@ -32,10 +33,17 @@ jobs:
32
33
with:
34
skip-cache: true # avoid cache poisoning attacks
35
36
+ - uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1
37
+ id: app-token
38
+ with:
39
+ client-id: ${{ vars.APP_CLIENT_ID }}
40
+ private-key: ${{ secrets.APP_PRIVATE_KEY }}
41
+
42
- name: Create or update release pull request
43
id: changesets
44
uses: changesets/action@63a615b9cd06ba9a3e6d13796c7fbcb080a60a0b # v1.8.0
45
46
+ github-token: ${{ steps.app-token.outputs.token }}
47
version: pnpm version-packages
48
49
publish:
0 commit comments