From 0521bdbc4aacb2894ca0c6c0e738753589dfc7a3 Mon Sep 17 00:00:00 2001 From: LENNOXT Date: Sat, 10 Jan 2026 15:02:47 +0100 Subject: [PATCH] Add bug report issue template Add a structured bug report form to improve issue quality. --- .github/ISSUE_TEMPLATE/bug_report.yml | 55 +++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..5870fbf7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,55 @@ +name: Bug report +description: Report a reproducible bug +title: "[Bug]: " +labels: ["bug"] +body: + - type: textarea + id: summary + attributes: + label: Summary + description: What happened? + placeholder: A clear and concise description of the bug. + validations: + required: true + + - type: textarea + id: expected + attributes: + label: Expected behavior + placeholder: What did you expect to happen? + validations: + required: true + + - type: textarea + id: steps + attributes: + label: Steps to reproduce + description: Provide steps so others can reproduce the issue. + placeholder: | + 1. + 2. + 3. + validations: + required: true + + - type: textarea + id: logs + attributes: + label: Logs / screenshots + description: Paste relevant logs or screenshots (remove secrets). + placeholder: Paste here... + validations: + required: false + + - type: textarea + id: environment + attributes: + label: Environment + description: OS, Docker version, client (reth/geth/nethermind), network (mainnet/sepolia), etc. + placeholder: | + OS: + Docker: + Client: + Network: + validations: + required: true