Skip to content

Commit

Permalink
chore: Add tag label script
Browse files Browse the repository at this point in the history
  • Loading branch information
jinsu4755 committed Aug 2, 2023
1 parent 2f934a7 commit e4fb6a5
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,36 @@ jobs:
if: ${{ startsWith(github.actor, 'jiyeoon00') }}
with:
labels: 지연🐰

label-tag:
runs-on: ubuntu-latest
steps:
- name: add label Bug
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.actor, 'Bug:') }}
with:
labels: Bug

- name: add label Chore
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.actor, 'Chore:') }}
with:
labels: Chore

- name: add label Document
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.actor, 'Docs:') }}
with:
labels: Document

- name: add label Feature
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.actor, 'Feat:') }}
with:
labels: Feature

- name: add label Hotfix
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.actor, 'Hotfix:') }}
with:
labels: Hotfix

0 comments on commit e4fb6a5

Please sign in to comment.