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 c105f13 commit 5d9f1fdCopy full SHA for 5d9f1fd
.github/workflows/publish-prerelease.yml
@@ -0,0 +1,20 @@
1
+name: Update release PR
2
+
3
+on:
4
+ workflow_call:
5
+ workflow_dispatch:
6
7
+jobs:
8
+ update-pr:
9
+ concurrency: prr:pre-release
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: actions/setup-node@v4
14
+ with:
15
+ node-version: 20
16
+ - run: npm ci
17
+ - run: npm run build
18
+ - run: npx pr-release pr --verbose --target release --source main --compact --verbose --minimize-semver-change
19
+ env:
20
+ GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
0 commit comments