From 3da72836956c437fee4680fbb781f2fa0de110b2 Mon Sep 17 00:00:00 2001 From: Nikolay Vitkov Date: Mon, 13 Oct 2025 11:55:37 +0200 Subject: [PATCH 1/3] chore: use template for feature requests --- .github/ISSUE_TEMPLATE/01-bug.yml | 8 +++++ .github/ISSUE_TEMPLATE/02-feature.yml | 44 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 19 ---------- 3 files changed, 52 insertions(+), 19 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/02-feature.yml delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/01-bug.yml b/.github/ISSUE_TEMPLATE/01-bug.yml index 02010b90..142e111b 100644 --- a/.github/ISSUE_TEMPLATE/01-bug.yml +++ b/.github/ISSUE_TEMPLATE/01-bug.yml @@ -70,3 +70,11 @@ body: - Windows - macOS - Linux + + - type: checkboxes + id: provide-pr + attributes: + label: What kinds of cats do you like? + description: You may select more than one. + options: + - label: I want to provide a PR to fix this bug diff --git a/.github/ISSUE_TEMPLATE/02-feature.yml b/.github/ISSUE_TEMPLATE/02-feature.yml new file mode 100644 index 00000000..3585ad21 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/02-feature.yml @@ -0,0 +1,44 @@ +name: Bug report +description: Suggest an idea for for chrome-devtools-mcp +title: '' +type: 'Feature' +label: + - enhancement +body: + - id: description + type: textarea + attributes: + label: Is your feature request related to a problem? Please describe. + description: > + A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + placeholder: + validations: + required: true + + - id: solution + type: textarea + attributes: + label: Describe the solution you'd like + description: > + A clear and concise description of what you want to happen. + placeholder: + validations: + required: true + + - id: alternatives + type: textarea + attributes: + label: Describe alternatives you've considered + description: > + A clear and concise description of any alternative solutions or features you've considered. + placeholder: + validations: + required: true + + - id: additional-context + type: textarea + attributes: + label: Additional context + description: > + Add any other context or screenshots about the feature request here. + placeholder: diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 5f0a04ce..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -labels: enhancement -assignees: '' ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. From 62cd5ec2594dc65f2f79119d9b776dcdd62e8f04 Mon Sep 17 00:00:00 2001 From: Nikolay Vitkov Date: Mon, 13 Oct 2025 12:28:25 +0200 Subject: [PATCH 2/3] fix --- .github/ISSUE_TEMPLATE/01-bug.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/01-bug.yml b/.github/ISSUE_TEMPLATE/01-bug.yml index 142e111b..84e64387 100644 --- a/.github/ISSUE_TEMPLATE/01-bug.yml +++ b/.github/ISSUE_TEMPLATE/01-bug.yml @@ -74,7 +74,6 @@ body: - type: checkboxes id: provide-pr attributes: - label: What kinds of cats do you like? - description: You may select more than one. + label: Extra checklist options: - label: I want to provide a PR to fix this bug From 650ef45627821ea3593cea3c8c743ceecf308320 Mon Sep 17 00:00:00 2001 From: Nikolay Vitkov Date: Mon, 13 Oct 2025 12:45:52 +0200 Subject: [PATCH 3/3] fix --- .github/ISSUE_TEMPLATE/02-feature.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/02-feature.yml b/.github/ISSUE_TEMPLATE/02-feature.yml index 3585ad21..0933f9f6 100644 --- a/.github/ISSUE_TEMPLATE/02-feature.yml +++ b/.github/ISSUE_TEMPLATE/02-feature.yml @@ -1,4 +1,4 @@ -name: Bug report +name: Feature description: Suggest an idea for for chrome-devtools-mcp title: '' type: 'Feature'