From ea0dcb0bd852db438a1b42b335ecc907b896c9fc Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Wed, 5 Feb 2025 07:22:51 +0100 Subject: [PATCH] Update bug report template to use form (#7535) update bug report template to use form --- .github/ISSUE_TEMPLATE/bug_report.md | 19 ------------------ .github/ISSUE_TEMPLATE/bug_report.yaml | 27 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 19 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 01b6fb85e..000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: kind/triage -assignees: '' - ---- - -#### Problem Description -A clear and concise description of what the bug is. - -#### Steps to reproduce the behavior: -1. -2. -3. - -#### System Information -Paste the output of "mitmproxy --version" here. diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 000000000..74d177989 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,27 @@ +name: Bug Report +description: File a bug report to help us improve. +labels: ["kind/triage"] +body: + - type: textarea + attributes: + label: Problem Description + value: | + A clear and concise description of what the bug is. + + #### Steps to reproduce the behavior: + 1. + 2. + 3. + validations: + required: true + - type: textarea + attributes: + label: System Information + description: Paste the output of "mitmproxy --version" here. + render: raw + - type: checkboxes + attributes: + label: 'Checklist' + options: + - label: This bug affects the [latest mitmproxy release](https://github.com/mitmproxy/mitmproxy/releases). + required: true