Skip to content

Commit

Permalink
CHORE :type-labeler 추가 (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
choidongkuen committed Feb 29, 2024
1 parent 36f5d1f commit 4d68501
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/type-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,61 +16,61 @@ jobs:

- name: add ✨ feature label
uses: actions-ecosystem/action-add-labels@v1
if: startsWith(github.event.pull_request.title, 'feat:')
if: startsWith(github.event.pull_request.title, '[FEATURE/')
with:
labels: ✨ feature

- name: add 🐛 bug-fix label
uses: actions-ecosystem/action-add-labels@v1
if: startsWith(github.event.pull_request.title, 'fix:')
if: startsWith(github.event.pull_request.title, '[FIX/')
with:
labels: 🐛 bug-fix

- name: add ♻️ refactor label
uses: actions-ecosystem/action-add-labels@v1
if: startsWith(github.event.pull_request.title, 'refactor:')
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:')
if: startsWith(github.event.pull_request.title, '[STYLE/')
with:
labels: 🎨 style

- name: add 🏗️ build label
uses: actions-ecosystem/action-add-labels@v1
if: startsWith(github.event.pull_request.title, 'chore:')
if: startsWith(github.event.pull_request.title, '[CHORE/')
with:
labels: 🏗️ build

- name: add ✅ test label
uses: actions-ecosystem/action-add-labels@v1
if: startsWith(github.event.pull_request.title, 'test:')
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:')
if: startsWith(github.event.pull_request.title, '[DOCS/')
with:
labels: 📝 docs

- name: add 👷 ci label
uses: actions-ecosystem/action-add-labels@v1
if: startsWith(github.event.pull_request.title, 'ci:')
if: startsWith(github.event.pull_request.title, '[CI/')
with:
labels: 👷 ci

- name: add ⚡️ perf label
uses: actions-ecosystem/action-add-labels@v1
if: startsWith(github.event.pull_request.title, 'perf:')
if: startsWith(github.event.pull_request.title, '[PERF/')
with:
labels: ⚡️ perf

- name: add 🔖 release label
uses: actions-ecosystem/action-add-labels@v1
if: startsWith(github.event.pull_request.title, 'release:')
if: startsWith(github.event.pull_request.title, '[RELEASE/')
with:
labels: 🔖 release

0 comments on commit 4d68501

Please sign in to comment.