From b1b43be197e6d98a81f8298eee913b1a202bd109 Mon Sep 17 00:00:00 2001 From: rreyn-bruno Date: Thu, 25 Jun 2026 10:50:05 -0500 Subject: [PATCH 1/2] chore: improve bug report issue template - Split reproduction into a required 'Steps to reproduce' field - Replace the .bru file prompt with an optional 'Collection to reproduce' - Disable blank issues to encourage use of the templates --- .github/ISSUE_TEMPLATE/BugReport.yaml | 13 ++++++++++--- .github/ISSUE_TEMPLATE/config.yaml | 2 +- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/BugReport.yaml b/.github/ISSUE_TEMPLATE/BugReport.yaml index 8d05984f852..e17ae37102d 100644 --- a/.github/ISSUE_TEMPLATE/BugReport.yaml +++ b/.github/ISSUE_TEMPLATE/BugReport.yaml @@ -49,14 +49,21 @@ body: - type: textarea attributes: label: Describe the bug - description: A clear and concise description of the bug and how it's effecting your work along with steps to reproduce. + description: A clear and concise description of the bug and how it's effecting your work. validations: required: true - type: textarea attributes: - label: .bru file to reproduce the bug - description: Attach your .bru file here that can reproduce the problem. + label: Steps to reproduce + description: The exact steps that can be performd to reproduce the issue + validations: + required: true + + - type: textarea + attributes: + label: Collection to reproduce + description: If possible, please attach the collection where the bug is present validations: required: false diff --git a/.github/ISSUE_TEMPLATE/config.yaml b/.github/ISSUE_TEMPLATE/config.yaml index ba0008b2219..9ff8290671e 100644 --- a/.github/ISSUE_TEMPLATE/config.yaml +++ b/.github/ISSUE_TEMPLATE/config.yaml @@ -1,4 +1,4 @@ -blank_issues_enabled: true +blank_issues_enabled: false contact_links: - name: Discussions url: https://github.com/usebruno/bruno/discussions From 24bbd8cc3646404cb44572dcaf2498220f20ea1d Mon Sep 17 00:00:00 2001 From: Ryan Date: Thu, 25 Jun 2026 11:04:38 -0500 Subject: [PATCH 2/2] Fix typos in BugReport.yaml descriptions --- .github/ISSUE_TEMPLATE/BugReport.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/BugReport.yaml b/.github/ISSUE_TEMPLATE/BugReport.yaml index e17ae37102d..884d318587b 100644 --- a/.github/ISSUE_TEMPLATE/BugReport.yaml +++ b/.github/ISSUE_TEMPLATE/BugReport.yaml @@ -49,14 +49,14 @@ body: - type: textarea attributes: label: Describe the bug - description: A clear and concise description of the bug and how it's effecting your work. + description: A clear and concise description of the bug and how it's affecting your work validations: required: true - type: textarea attributes: label: Steps to reproduce - description: The exact steps that can be performd to reproduce the issue + description: The exact steps that can be performed to reproduce the issue validations: required: true