Skip to content

feat: λ΄‰μ‚¬μžμ˜ 후원기λŠ₯을 κ΅¬ν˜„ν•œλ‹€. #194

feat: λ΄‰μ‚¬μžμ˜ 후원기λŠ₯을 κ΅¬ν˜„ν•œλ‹€.

feat: λ΄‰μ‚¬μžμ˜ 후원기λŠ₯을 κ΅¬ν˜„ν•œλ‹€. #194

Workflow file for this run

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