From 9d60d9561e0a3336f08abcea62aac94b6dcfc0a9 Mon Sep 17 00:00:00 2001 From: Riyadh Al Nur Date: Fri, 6 Apr 2018 11:09:24 +0800 Subject: [PATCH 1/2] Create issuelabeler.md --- _apps/issuelabeler.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 _apps/issuelabeler.md diff --git a/_apps/issuelabeler.md b/_apps/issuelabeler.md new file mode 100644 index 0000000..4056a3f --- /dev/null +++ b/_apps/issuelabeler.md @@ -0,0 +1,23 @@ +--- +title: Issue Labeler +description: A GitHub bot to label issues automatically based on title and body against list of defined labels. +slug: issuelabeler +screenshots: +- https://raw.githubusercontent.com/riyadhalnur/issuelabeler/master/assets/screenshot.png +authors: [ riyadhalnur ] +repository: riyadhalnur/issuelabeler +host: https://1th3h69bkc.execute-api.ap-southeast-1.amazonaws.com/production +--- + +A GitHub bot to label issues automatically based on title and body against list of defined labels. Built with [probot](https://github.com/probot/probot). + +## Installation +After installation, create `.github/labeler.yml` in the default branch to enable it: + +```yml +# Number of labels to fetch (optional). Defaults to 20 +numLabels: 40 +# These labels will not be used even if the issue contains them +excludeLabels: + - pinned +``` From cfb2ea8be945871a199c786a779037cd7048bae2 Mon Sep 17 00:00:00 2001 From: Riyadh Al Nur Date: Fri, 6 Apr 2018 11:15:56 +0800 Subject: [PATCH 2/2] Remove the banned words from description Removed bot and automatically from description. Words are part of banned words. Signed-off-by: Riyadh Al Nur --- _apps/issuelabeler.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_apps/issuelabeler.md b/_apps/issuelabeler.md index 4056a3f..36c2755 100644 --- a/_apps/issuelabeler.md +++ b/_apps/issuelabeler.md @@ -1,6 +1,6 @@ --- title: Issue Labeler -description: A GitHub bot to label issues automatically based on title and body against list of defined labels. +description: Label issues based on title and body against list of defined labels. slug: issuelabeler screenshots: - https://raw.githubusercontent.com/riyadhalnur/issuelabeler/master/assets/screenshot.png @@ -9,7 +9,7 @@ repository: riyadhalnur/issuelabeler host: https://1th3h69bkc.execute-api.ap-southeast-1.amazonaws.com/production --- -A GitHub bot to label issues automatically based on title and body against list of defined labels. Built with [probot](https://github.com/probot/probot). +A GitHub bot to label issues based on title and body against list of defined labels. Built with [probot](https://github.com/probot/probot). ## Installation After installation, create `.github/labeler.yml` in the default branch to enable it: