This repository has been archived by the owner on Jul 29, 2024. It is now read-only.
chore: GitHub Action 스크립트를 이전한 인프라에 맞게 수정 #181
This file contains 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: semantic-versioning | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
semantic-versioning: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.merged == true && github.base_ref == 'main' | |
steps: | |
- name: semantic-versioning | |
uses: release-drafter/release-drafter@v5 | |
with: | |
config-name: draft-release.yml | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
package-version-update: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.merged == true && github.base_ref == 'main' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Github 회원 정보 설정 | |
env: | |
MY_EMAIL: [email protected] | |
MY_NAME: Dong-gle | |
run: | | |
git config --global user.email $MY_EMAIL | |
git config --global user.name $MY_NAME | |
- name: Node.js 설치 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- name: PR Label 확인 | |
id: pr-labels | |
uses: joerick/[email protected] | |
- name: 메이저 버전 업데이트 | |
if: | | |
contains(steps.pr-labels.outputs.labels, ' major ') | |
run: | | |
yarn version --major | |
working-directory: ./frontend | |
- name: 마이너 버전 업데이트 | |
if: | | |
contains(steps.pr-labels.outputs.labels, ' minor ') | |
run: | | |
yarn version --minor | |
working-directory: ./frontend | |
- name: 패치 버전 업데이트 | |
if: | | |
contains(steps.pr-labels.outputs.labels, ' patch ') | |
run: | | |
yarn version --patch | |
working-directory: ./frontend | |
- name: main 브랜치 Push | |
uses: ad-m/github-push-action@master | |
with: | |
branch: 'main' |