From 4592c14330fed2b26c78d37c31b1fb127289172a Mon Sep 17 00:00:00 2001 From: Erik Schierboom Date: Fri, 28 May 2021 14:07:42 +0200 Subject: [PATCH] Add a `.appends/.github/labels.yml` file. The `.appends/.github/labels.yml` file contains all the labels that are currently used in this repo. The `.github/labels.yml` file will contain the full list of labels that this repo can use, which will be a combination of the `.appends/.github/labels.yml` file and a centrally-managed `labels.yml` file. We'll automatically sync any changes, which allows us to guarantee that all the track repositories will have a pre-determined set of labels, augmented with any custom labels defined in the `.appends/.github/labels.yml` file. --- .appends/.github/labels.yml | 40 +++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .appends/.github/labels.yml diff --git a/.appends/.github/labels.yml b/.appends/.github/labels.yml new file mode 100644 index 0000000..06aec9a --- /dev/null +++ b/.appends/.github/labels.yml @@ -0,0 +1,40 @@ +- name: "bug" + description: "Something isn't working" + color: "d73a4a" + +- name: "documentation" + description: "Improvements or additions to documentation" + color: "0075ca" + +- name: "duplicate" + description: "This issue or pull request already exists" + color: "cfd3d7" + +- name: "enhancement" + description: "New feature or request" + color: "a2eeef" + +- name: "good first issue" + description: "Good for newcomers" + color: "7057ff" + +- name: "help wanted" + description: "Extra attention is needed" + color: "008672" + +- name: "invalid" + description: "This doesn't seem right" + color: "e4e669" + +- name: "question" + description: "Further information is requested" + color: "d876e3" + +- name: "v3-migration 🤖" + description: "Preparing for Exercism v3" + color: "E99695" + +- name: "wontfix" + description: "This will not be worked on" + color: "ffffff" +