Skip to content

Commit

Permalink
chore(.github/labeler.yml): matcher 내부 정규표현식 포괄적, 간략하게 변경 (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
sukvvon authored Mar 18, 2024
1 parent b9b097b commit e6ced41
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,42 +3,42 @@ version: v1
labels:
- label: bug
matcher:
title: '^bug(?:\(.+\))?: .+'
branch: '^bug(?:\/.+)?'
commits: '^bug(?:\(.+\))?: .+'
title: '^bug(?:\(.+\))?:.*'
branch: '^bug\/.*'
commits: '^bug(?:\(.+\))?:.*'

- label: chore
matcher:
title: '^chore(?:\(.+\))?: .+'
branch: '^chore(?:\/.+)?'
commits: '^chore(?:\(.+\))?: .+'
title: '^chore(?:\(.+\))?:.*'
branch: '^chore\/.*'
commits: '^chore(?:\(.+\))?:.*'

- label: docs
matcher:
title: '^docs(?:\(.+\))?: .+'
branch: '^docs(?:\/.+)?'
commits: '^docs(?:\(.+\))?: .+'
title: '^docs(?:\(.+\))?:.*'
branch: '^docs\/.*'
commits: '^docs(?:\(.+\))?:.*'

- label: feat
matcher:
title: '^feat(?:\(.+\))?: .+'
branch: '^feat(?:\/.+)?'
commits: '^feat(?:\(.+\))?: .+'
title: '^feat(?:\(.+\))?:.*'
branch: '^feat\/.*'
commits: '^feat(?:\(.+\))?:.*'

- label: fix
matcher:
title: '^fix(?:\(.+\))?: .+'
branch: '^fix(?:\/.+)?'
commits: '^fix(?:\(.+\))?: .+'
title: '^fix(?:\(.+\))?:.*'
branch: '^fix\/.*'
commits: '^fix(?:\(.+\))?:.*'

- label: refactor
matcher:
title: '^refactor(?:\(.+\))?: .+'
branch: '^refactor(?:\/.+)?'
commits: '^refactor(?:\(.+\))?: .+'
title: '^refactor(?:\(.+\))?:.*'
branch: '^refactor\/.*'
commits: '^refactor(?:\(.+\))?:.*'

- label: style
matcher:
title: '^style(?:\(.+\))?: .+'
branch: '^style(?:\/.+)?'
commits: '^style(?:\(.+\))?: .+'
title: '^style(?:\(.+\))?:.*'
branch: '^style\/.*'
commits: '^style(?:\(.+\))?:.*'

0 comments on commit e6ced41

Please sign in to comment.