Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 16 additions & 9 deletions .github/workflows/release-lazy-table-renderer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -54,18 +54,25 @@ jobs:
cd packages/lazy-table-renderer
pnpm dlx semantic-release

- name: Create Pull Request to main
- uses: actions/checkout@v4
with:
ref: main
- name: Reset main branch
run: |
git fetch origin release:release
git reset --hard release
- name: Create Pull Request
if: success()
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: main
base: release
branch: release-to-main
commit-message: 'chore: update version to latest release'
title: 'chore: update version to latest release'
body: |
This PR updates the main branch with the latest version information from the release branch.
이 PR은 release 브랜치의 최신 버전 정보로 main 브랜치를 업데이트합니다.

- Updates package.json version
- Updates CHANGELOG.md
- package.json 버전 업데이트
- CHANGELOG.md 업데이트

This PR was automatically created by the release workflow.
이 PR은 release 워크플로우에 의해 자동으로 생성되었습니다.
delete-branch: true
1 change: 0 additions & 1 deletion .github/workflows/release-vue-pivottable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ jobs:
git fetch origin release:release
git reset --hard release
- name: Create Pull Request
if: success()
uses: peter-evans/create-pull-request@v5
with:
branch: release-to-main
Expand Down
Loading