From f05738632e8f2773ab7806202d52a6ec12e94127 Mon Sep 17 00:00:00 2001 From: Sjoerd Bozon Date: Mon, 20 Jan 2025 13:49:02 +0100 Subject: [PATCH 1/4] feat(issue templates): adding bug/feat type instead of tag Signed-off-by: Sjoerd Bozon --- .github/ISSUE_TEMPLATE/bug-report.md | 3 ++- .github/ISSUE_TEMPLATE/feature-request.md | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md index 3ca47b578..f5a13442e 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -2,7 +2,8 @@ name: "\U0001F41B Bug report" about: Create a report to help us fix things title: '' -labels: ['bug', 'needs-triage'] +labels: ['needs-triage'] +type: 'bug' assignees: '' projects: ['nightscout/2'] diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md index de0a0edce..b33e1c445 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.md +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -2,7 +2,8 @@ name: "\U0001F4A1 Feature request \U0001F4A1" about: Suggest an idea for this project title: '' -labels: ['enhancement', 'needs-triage'] +labels: ['needs-triage'] +types: 'feature' assignees: '' projects: ['nightscout/2'] From cb47fd763d9b82afad9d60f6d1a43b7ec347bcf4 Mon Sep 17 00:00:00 2001 From: Sjoerd Bozon Date: Mon, 20 Jan 2025 13:49:02 +0100 Subject: [PATCH 2/4] feat(issue templates): adding bug/feat type instead of tag Signed-off-by: Sjoerd Bozon --- .github/ISSUE_TEMPLATE/bug-report.md | 3 ++- .github/ISSUE_TEMPLATE/feature-request.md | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md index 3ca47b578..f5a13442e 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -2,7 +2,8 @@ name: "\U0001F41B Bug report" about: Create a report to help us fix things title: '' -labels: ['bug', 'needs-triage'] +labels: ['needs-triage'] +type: 'bug' assignees: '' projects: ['nightscout/2'] diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md index de0a0edce..b33e1c445 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.md +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -2,7 +2,8 @@ name: "\U0001F4A1 Feature request \U0001F4A1" about: Suggest an idea for this project title: '' -labels: ['enhancement', 'needs-triage'] +labels: ['needs-triage'] +types: 'feature' assignees: '' projects: ['nightscout/2'] From 7c4d05bfee792144d9c9af4339723b446d42fb88 Mon Sep 17 00:00:00 2001 From: Sjoerd Bozon Date: Sun, 26 Jan 2025 17:41:55 +0100 Subject: [PATCH 3/4] fix(issuetemplates): need to be in brackets Signed-off-by: Sjoerd Bozon --- .github/ISSUE_TEMPLATE/bug-report.md | 2 +- .github/ISSUE_TEMPLATE/feature-request.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md index f5a13442e..d9dbc233b 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -3,7 +3,7 @@ name: "\U0001F41B Bug report" about: Create a report to help us fix things title: '' labels: ['needs-triage'] -type: 'bug' +type: ['bug'] assignees: '' projects: ['nightscout/2'] diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md index b33e1c445..cd7eb03b7 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.md +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -3,7 +3,7 @@ name: "\U0001F4A1 Feature request \U0001F4A1" about: Suggest an idea for this project title: '' labels: ['needs-triage'] -types: 'feature' +types: ['feature'] assignees: '' projects: ['nightscout/2'] From bbbe7dbf67d67a9520e8100ebba4046eb4454e32 Mon Sep 17 00:00:00 2001 From: Sjoerd Bozon Date: Sun, 26 Jan 2025 18:01:11 +0100 Subject: [PATCH 4/4] fix(issuetemplates): need to be in double qoutes Signed-off-by: Sjoerd Bozon --- .github/ISSUE_TEMPLATE/bug-report.md | 2 +- .github/ISSUE_TEMPLATE/feature-request.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md index d9dbc233b..af2098e1b 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -3,7 +3,7 @@ name: "\U0001F41B Bug report" about: Create a report to help us fix things title: '' labels: ['needs-triage'] -type: ['bug'] +type: "bug" assignees: '' projects: ['nightscout/2'] diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md index cd7eb03b7..e92c2c3fb 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.md +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -3,7 +3,7 @@ name: "\U0001F4A1 Feature request \U0001F4A1" about: Suggest an idea for this project title: '' labels: ['needs-triage'] -types: ['feature'] +types: "feature" assignees: '' projects: ['nightscout/2']