Skip to content

chore: 프로세스 종료 실패 시, 배포 종료 로직 추가 #45

chore: 프로세스 종료 실패 시, 배포 종료 로직 추가

chore: 프로세스 종료 실패 시, 배포 종료 로직 추가 #45

Workflow file for this run

name: PR labeler
on:
pull_request:
types:
- opened
jobs:
add_label:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: add ✨ feat label
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.pull_request.title, 'feat:') }}
with:
labels: ✨ feat
- name: add 🐞 fix label
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.pull_request.title, 'fix:') }}
with:
labels: 🐞 fix
- name: add 🔨 refactor label
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.pull_request.title, 'refactor:') }}
with:
labels: 🔨 refactor
- name: add ⚙️ chore label
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.pull_request.title, 'chore:') }}
with:
labels: ⚙️ chore
- name: add 🧪️ test label
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.pull_request.title, 'test:') }}
with:
labels: 🧪️ test
- name: add 📝 docs label
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.pull_request.title, 'docs:') }}
with:
labels: 📝 docs