Merge pull request #112 from vue-pivottable/release #21
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Release PR | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
create-release-pr: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: release | |
- name: Reset main branch | |
run: | | |
git fetch origin main:main | |
git reset --hard main | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
branch: main-to-release | |
commit-message: 'chore: sync main to release [skip ci]' | |
title: 'chore: sync main to release' | |
body: | | |
이 PR은 main 브랜치의 변경사항을 release 브랜치로 동기화합니다. | |
이 PR이 머지되면 release 워크플로우가 자동으로 트리거됩니다. | |
delete-branch: true |