From c448d838b635f0627f7cca9c2a76d290da3af725 Mon Sep 17 00:00:00 2001 From: Gavin Mogan Date: Thu, 19 Dec 2019 11:17:13 -0800 Subject: [PATCH 1/3] Add a file that contains all the labels a default project should have --- labels.yaml | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 labels.yaml diff --git a/labels.yaml b/labels.yaml new file mode 100644 index 0000000..2431225 --- /dev/null +++ b/labels.yaml @@ -0,0 +1,56 @@ +- name: good first issue + color: 7057ff +- name: hackathon + color: 85f920 +- name: help wanted + color: 008672 +- name: question + color: D876E3 +- name: wontfix + color: FFFFFF +- name: duplicate + color: CFD3D7 +- name: bug + color: D73A4A +- name: documentation + color: 0e8a16 + description: A PR that adds to documentation - used by Release Drafter +- name: hacktoberfest + color: bdff3a + description: 'Hacktoberfest. https://jenkins.io/blog/2018/10/01/hacktoberfest/' +- name: feature + color: 1d00ff + description: A PR that adds a feature - used by Release Drafter +- name: bugfix + oldname: fix + color: c9e85c + description: A PR that fixes a bug - used by Release Drafter +- name: chore + color: c9abea + description: a PR that adds to maintenance - used by Release Drafter +- name: test + color: d6e819 + description: A PR that adds to testing - used by Release Drafter +- name: pinned + color: 5ed5e5 + description: 'Used to avoid stale[bot] marking a issue/PR stale' +- name: plugin-compatibility + color: 8425c4 +- name: stale + color: ffffff + description: 'Used by stale[bot] to mark a issue/PR stale' +- name: skip-changelog + color: f44271 + description: A PR that is excluded from Release draft - used by Release Drafter +- name: removed + color: aa0f1c + description: A PR that removes code - used by Release Drafter +- name: deprecated + color: e2b626 + description: A PR that deprecates code - used by Release Drafter +- name: breaking + color: 640910 + description: A PR that is a breaking change - used by Release Drafter +- name: dependencies + color: 0366d6 + description: A PR that updates dependencies - used by Release Drafter From 4f59a6219705df14067688df4f2a503e143cfa92 Mon Sep 17 00:00:00 2001 From: Gavin Mogan Date: Thu, 19 Dec 2019 17:13:07 -0800 Subject: [PATCH 2/3] Update labels.yaml --- labels.yaml | 113 ++++++++++++++++++++++++++-------------------------- 1 file changed, 57 insertions(+), 56 deletions(-) diff --git a/labels.yaml b/labels.yaml index 2431225..c11cbda 100644 --- a/labels.yaml +++ b/labels.yaml @@ -1,56 +1,57 @@ -- name: good first issue - color: 7057ff -- name: hackathon - color: 85f920 -- name: help wanted - color: 008672 -- name: question - color: D876E3 -- name: wontfix - color: FFFFFF -- name: duplicate - color: CFD3D7 -- name: bug - color: D73A4A -- name: documentation - color: 0e8a16 - description: A PR that adds to documentation - used by Release Drafter -- name: hacktoberfest - color: bdff3a - description: 'Hacktoberfest. https://jenkins.io/blog/2018/10/01/hacktoberfest/' -- name: feature - color: 1d00ff - description: A PR that adds a feature - used by Release Drafter -- name: bugfix - oldname: fix - color: c9e85c - description: A PR that fixes a bug - used by Release Drafter -- name: chore - color: c9abea - description: a PR that adds to maintenance - used by Release Drafter -- name: test - color: d6e819 - description: A PR that adds to testing - used by Release Drafter -- name: pinned - color: 5ed5e5 - description: 'Used to avoid stale[bot] marking a issue/PR stale' -- name: plugin-compatibility - color: 8425c4 -- name: stale - color: ffffff - description: 'Used by stale[bot] to mark a issue/PR stale' -- name: skip-changelog - color: f44271 - description: A PR that is excluded from Release draft - used by Release Drafter -- name: removed - color: aa0f1c - description: A PR that removes code - used by Release Drafter -- name: deprecated - color: e2b626 - description: A PR that deprecates code - used by Release Drafter -- name: breaking - color: 640910 - description: A PR that is a breaking change - used by Release Drafter -- name: dependencies - color: 0366d6 - description: A PR that updates dependencies - used by Release Drafter +labels: + - name: good first issue + color: 7057ff + - name: hackathon + color: 85f920 + - name: help wanted + color: 008672 + - name: question + color: D876E3 + - name: wontfix + color: FFFFFF + - name: duplicate + color: CFD3D7 + - name: bug + color: D73A4A + - name: documentation + color: 0e8a16 + description: A PR that adds to documentation - used by Release Drafter + - name: hacktoberfest + color: bdff3a + description: 'Hacktoberfest. https://jenkins.io/blog/2018/10/01/hacktoberfest/' + - name: feature + color: 1d00ff + description: A PR that adds a feature - used by Release Drafter + - name: bugfix + oldname: fix + color: c9e85c + description: A PR that fixes a bug - used by Release Drafter + - name: chore + color: c9abea + description: a PR that adds to maintenance - used by Release Drafter + - name: test + color: d6e819 + description: A PR that adds to testing - used by Release Drafter + - name: pinned + color: 5ed5e5 + description: 'Used to avoid stale[bot] marking a issue/PR stale' + - name: plugin-compatibility + color: 8425c4 + - name: stale + color: ffffff + description: 'Used by stale[bot] to mark a issue/PR stale' + - name: skip-changelog + color: f44271 + description: A PR that is excluded from Release draft - used by Release Drafter + - name: removed + color: aa0f1c + description: A PR that removes code - used by Release Drafter + - name: deprecated + color: e2b626 + description: A PR that deprecates code - used by Release Drafter + - name: breaking + color: 640910 + description: A PR that is a breaking change - used by Release Drafter + - name: dependencies + color: 0366d6 + description: A PR that updates dependencies - used by Release Drafter From 21234105ae468b863a94103806ef037164cff85f Mon Sep 17 00:00:00 2001 From: Gavin Mogan Date: Tue, 24 Dec 2019 20:08:58 -0800 Subject: [PATCH 3/3] move to .github directory --- labels.yaml => .github/labels.yaml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename labels.yaml => .github/labels.yaml (100%) diff --git a/labels.yaml b/.github/labels.yaml similarity index 100% rename from labels.yaml rename to .github/labels.yaml