From e5057bbbf94fd191114dddc0cb4038744892c2d9 Mon Sep 17 00:00:00 2001 From: Stephen Hoekstra Date: Tue, 12 Mar 2024 23:58:40 +0100 Subject: [PATCH] Add `misc` as a label (#56) We're using this in other places but it was not added as a label. This fixes that. Signed-off-by: Stephen Hoekstra Signed-off-by: Stephen Hoekstra --- sync-root/.github/labels.yaml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/sync-root/.github/labels.yaml b/sync-root/.github/labels.yaml index 5d40c75..e961fe2 100644 --- a/sync-root/.github/labels.yaml +++ b/sync-root/.github/labels.yaml @@ -1,25 +1,28 @@ --- - name: breaking - color: 'b60205' + color: "b60205" description: This change is not backwards compatible - name: bug - color: 'd93f0b' + color: "d93f0b" description: Something isn't working - name: documentation - color: '0075ca' + color: "0075ca" description: Improvements or additions to documentation - name: enhancement - color: '0e8a16' + color: "0e8a16" description: New feature or request - name: feature - color: '0e8a16' + color: "0e8a16" description: New feature or request - name: fix - color: 'd93f0b' + color: "d93f0b" description: Something isn't working +- name: misc + color: "#6B93D3" + description: Miscellaneous task not covered by something else - name: no-changelog - color: 'cccccc' + color: "cccccc" description: No entry should be added to the release notes and changelog - name: security - color: '5319e7' + color: "5319e7" description: Solving a security issue