File tree Expand file tree Collapse file tree 2 files changed +16
-10
lines changed Expand file tree Collapse file tree 2 files changed +16
-10
lines changed Original file line number Diff line number Diff line change 1818 id-token : write
1919 steps :
2020 - name : Checkout
21- uses : actions/checkout@v3
21+ uses : actions/checkout@v4
2222 with :
2323 fetch-depth : 0
2424
@@ -54,18 +54,25 @@ jobs:
5454 cd packages/lazy-table-renderer
5555 pnpm dlx semantic-release
5656
57- - name : Create Pull Request to main
57+ - uses : actions/checkout@v4
58+ with :
59+ ref : main
60+ - name : Reset main branch
61+ run : |
62+ git fetch origin release:release
63+ git reset --hard release
64+ - name : Create Pull Request
5865 if : success()
5966 uses : peter-evans/create-pull-request@v5
6067 with :
61- token : ${{ secrets.GITHUB_TOKEN }}
62- branch : main
63- base : release
68+ branch : release-to-main
69+ commit-message : ' chore: update version to latest release'
6470 title : ' chore: update version to latest release'
6571 body : |
66- This PR updates the main branch with the latest version information from the release branch .
72+ 이 PR은 release 브랜치의 최신 버전 정보로 main 브랜치를 업데이트합니다 .
6773
68- - Updates package.json version
69- - Updates CHANGELOG.md
74+ - package.json 버전 업데이트
75+ - CHANGELOG.md 업데이트
7076
71- This PR was automatically created by the release workflow.
77+ 이 PR은 release 워크플로우에 의해 자동으로 생성되었습니다.
78+ delete-branch : true
Original file line number Diff line number Diff line change 5959 git fetch origin release:release
6060 git reset --hard release
6161 - name : Create Pull Request
62- if : success()
6362 uses : peter-evans/create-pull-request@v5
6463 with :
6564 branch : release-to-main
You can’t perform that action at this time.
0 commit comments