fix: region 요청 관련 필터 리스트 추가 #52
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: 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 |