From 360840f2390af9a526d591cde08cb51de4688295 Mon Sep 17 00:00:00 2001 From: CaioHenriquexD Date: Sat, 27 Dec 2025 08:13:12 +0100 Subject: [PATCH] docs: add bug report issue template Collect reproducible reports with network/client context. --- .github/ISSUE_TEMPLATE/bug_report.yml | 43 +++++++++++++++++++++++++++ 1 file changed, 43 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..47dd8eac --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,43 @@ +name: Bug report +description: Report a problem with Base node setup/runtime +title: "[Bug]: " +labels: ["bug"] +body: + - type: markdown + attributes: + value: "Thanks for reporting! Please include as much detail as you can." + - type: input + id: network + attributes: + label: Network + description: mainnet or sepolia + placeholder: "mainnet" + validations: + required: true + - type: input + id: client + attributes: + label: Client + description: reth, geth, or nethermind + placeholder: "reth" + validations: + required: true + - type: textarea + id: expected + attributes: + label: Expected behavior + validations: + required: true + - type: textarea + id: actual + attributes: + label: Actual behavior + validations: + required: true + - type: textarea + id: logs + attributes: + label: Relevant logs/output + description: Paste only non-sensitive logs (no tokens/URLs with keys). + validations: + required: false