From 5fdce8a0a511914d8e357c106672516665c1a8dc Mon Sep 17 00:00:00 2001 From: Kong <155794105+ocahs9@users.noreply.github.com> Date: Mon, 18 Nov 2024 22:01:56 +0900 Subject: [PATCH] Create label.yml --- .github/workflows/label.yml | 47 +++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/label.yml diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml new file mode 100644 index 0000000..cf7a4ca --- /dev/null +++ b/.github/workflows/label.yml @@ -0,0 +1,47 @@ +# labeler "full" schema + +# enable labeler on issues, prs, or both. +enable: + issues: true + prs: true +# comments object allows you to specify a different message for issues and prs + +comments: + issues: | + 라벨 지정 제대로 되었는지 체크 한 번씩 하기 🧞‍♂️ 작업도 화이팅 !!!!!!! 😍 + prs: | + 라벨 지정 제대로 되었는지 체크 한 번씩 하기 🧞‍♂️ 고생했어요 다음 작업도 화이팅 !!!!!! 😍 + + +# Labels is an object where: +# - keys are labels +# - values are objects of { include: [ pattern ], exclude: [ pattern ] } +# - pattern must be a valid regex, and is applied globally to +# title + description of issues and/or prs (see enabled config above) +# - 'include' patterns will associate a label if any of these patterns match +# - 'exclude' patterns will ignore this label if any of these patterns match +labels: + ':tada: init': + include: + - '\binit\b' + ':sparkles: feat': + include: + - '\bfeat\b' + ':bug: fix': + include: + - '\bfix\b' + ':package: chore': + include: + - '\bchore\b' + ':recycle: refactor': + include: + - '\brefactor\b' + ':lipstick: design': + include: + - '\bdesign\b' + ':ambulance: hotfix': + include: + - '\bhotfix\b' + ':memo: docs': + include: + - '\bdocs\b'