From b48c1d2acadf79f16bf41073ead179863b28cab1 Mon Sep 17 00:00:00 2001 From: Dadmehr <134191240+BDadmehr0@users.noreply.github.com> Date: Mon, 18 Nov 2024 18:30:14 +0000 Subject: [PATCH] Create labeler.yml - Issues or pull requests with changes in `src/**/*.js` and `*.html` will get the `bug` label. - Changes in `docs/**` and `*.md` will get the `documentation` label. - Changes in `features/**` will get the `enhancement` label. --- .github/labeler.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/labeler.yml diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 0000000..fa918ed --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,11 @@ +# Automatically label based on file paths +bug: + - "src/**/*.js" + - "*.html" + +documentation: + - "docs/**" + - "*.md" + +enhancement: + - "features/**"