Skip to content

Commit b971a00

Browse files
authored
Merge pull request #102 from vue-pivottable/feat/ci
Feat/ci
2 parents a70f8c6 + 8c22dab commit b971a00

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

.github/workflows/create-release-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
uses: peter-evans/create-pull-request@v5
3232
with:
3333
token: ${{ steps.generate-token.outputs.token }}
34-
base: release
35-
branch: main
34+
base: main
35+
branch: release
3636
title: 'chore: sync main to release'
3737
body: |
3838
이 PR은 메인 브랜치의 변경사항을 릴리즈 브랜치로 동기화합니다.

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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,19 @@ jobs:
5353
run: |
5454
cd packages/lazy-table-renderer
5555
pnpm dlx semantic-release
56+
57+
- name: Create Pull Request to main
58+
if: success()
59+
uses: peter-evans/create-pull-request@v5
60+
with:
61+
token: ${{ secrets.GITHUB_TOKEN }}
62+
branch: release
63+
base: main
64+
title: 'chore: update version to latest release'
65+
body: |
66+
This PR updates the main branch with the latest version information from the release branch.
67+
68+
- Updates package.json version
69+
- Updates CHANGELOG.md
70+
71+
This PR was automatically created by the release workflow.

0 commit comments

Comments
 (0)