Skip to content

Commit 623d579

Browse files
Merge pull request #106 from vue-pivottable/feat/ci
chore: update workflows
2 parents 69290ee + 3858f85 commit 623d579

File tree

2 files changed

+16
-10
lines changed

2 files changed

+16
-10
lines changed

.github/workflows/release-lazy-table-renderer.yml

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
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

.github/workflows/release-vue-pivottable.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ jobs:
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

0 commit comments

Comments
 (0)