From ea74416fa07c4125e22b58bf9525c4f055532d18 Mon Sep 17 00:00:00 2001 From: Alexander Sandor Date: Thu, 9 Jan 2025 13:18:13 +0100 Subject: [PATCH] validate bug_report template --- .github/ISSUE_TEMPLATE/bug_report.yml | 22 ++++---- .github/ISSUE_TEMPLATE/config.yml | 1 - .github/ISSUE_TEMPLATE/feature_request.yml | 63 ---------------------- 3 files changed, 12 insertions(+), 74 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/config.yml delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 9b04d38..4ba34d3 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -6,6 +6,7 @@ body: attributes: value: | When reporting a bug, please complete this template thoroughly to help us address the issue effectively! + - type: textarea id: description-of-bug attributes: @@ -52,19 +53,20 @@ body: label: Additional context description: Share any additional context or information about the bug. - - type: multiple_choice + - type: dropdown id: experience attributes: label: How experienced are you with this library? + multiple: false description: This helps us understand where in the user journey this issue might arise. options: - - label: Beginner - Just getting started with this library - - label: Intermediate - Familiar with the basics or have used it in a few projects - - label: Expert - Experienced and comfortable with using this library in complex projects + - Beginner - Just getting started with this library + - Intermediate - Familiar with the basics or have used it in a few projects + - Expert - Experienced and comfortable with using this library in complex projects - - type: checkboxes - id: terms - attributes: - label: Are you interested in working on a PR for this? - options: - - label: I want to work on this + # - type: checkboxes + # id: terms + # attributes: + # label: Are you interested in working on a PR for this? + # options: + # - label: I want to work on this diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml deleted file mode 100644 index 0086358..0000000 --- a/.github/ISSUE_TEMPLATE/config.yml +++ /dev/null @@ -1 +0,0 @@ -blank_issues_enabled: true diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml deleted file mode 100644 index f7c0918..0000000 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ /dev/null @@ -1,63 +0,0 @@ -name: Feature Request -description: Suggest a new feature for Relic. -labels: ["enhancement"] -body: - - type: markdown - attributes: - value: | - When suggesting a feature, please read this complete form and fill in all the fields to ensure we understand your idea thoroughly! - - - type: textarea - id: problem-to-solve - attributes: - label: Problem to Solve - description: What problem are you trying to solve with this feature? - validations: - required: true - - - type: textarea - id: proposal - attributes: - label: Proposal - description: What is your proposed solution? Add as much detail as possible, including code examples or references. - validations: - required: true - - - type: textarea - id: use-case - attributes: - label: Use Case - description: How would this feature be used in a real-world scenario? Provide an example if possible. - validations: - required: true - - - type: textarea - id: alternatives - attributes: - label: Alternatives - description: Are there any alternative solutions or features you've considered? If so, what are they? - validations: - required: true - - - type: textarea - id: additional-context - attributes: - label: Additional context - description: Share any additional context or information about the feature. - - - type: multiple_choice - id: experience - attributes: - label: How experienced are you with this library? - description: This helps us understand where in the user journey this issue might arise. - options: - - label: Beginner - Just getting started with this library - - label: Intermediate - Familiar with the basics or have used it in a few projects - - label: Expert - Experienced and comfortable with using this library in complex projects - - - type: checkboxes - id: terms - attributes: - label: Are you interested in working on a PR for this? - options: - - label: I want to work on this