fix: runtimeException 예외 메시지를 그대로 반환하는 문제를 수정한다. #204
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: Type labeler | |
on: | |
pull_request: | |
types: | |
- opened | |
jobs: | |
add_label: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: add ✨ Feat label | |
uses: actions-ecosystem/action-add-labels@v1 | |
if: ${{ startsWith(github.event.pull_request.title, 'feat:') }} | |
with: | |
labels: ✨ Feat | |
- name: add 🐞 Bug label | |
uses: actions-ecosystem/action-add-labels@v1 | |
if: ${{ startsWith(github.event.pull_request.title, 'fix:') }} | |
with: | |
labels: 🐞 Bug | |
- name: add 🔨 Refactor label | |
uses: actions-ecosystem/action-add-labels@v1 | |
if: ${{ startsWith(github.event.pull_request.title, 'refactor:') }} | |
with: | |
labels: 🔨 Refactor | |
- name: add 🎨 Style label | |
uses: actions-ecosystem/action-add-labels@v1 | |
if: ${{ startsWith(github.event.pull_request.title, 'style:') }} | |
with: | |
labels: 🎨 Style | |
- name: add ⚙ Setting label | |
uses: actions-ecosystem/action-add-labels@v1 | |
if: ${{ startsWith(github.event.pull_request.title, 'chore:') }} | |
with: | |
labels: ⚙ Setting | |
- 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 |