Skip to content

Commit 5d9f1fd

Browse files
authored
Create publish-prerelease.yml
1 parent c105f13 commit 5d9f1fd

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)