From 901fd3920888d9094bc596ea7a3ff65ca23381ba Mon Sep 17 00:00:00 2001 From: Alexey Shekhirin Date: Wed, 11 Oct 2023 21:18:27 +0300 Subject: [PATCH 1/2] chore: node type in bug.yml issue template --- .github/ISSUE_TEMPLATE/bug.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 76e9bfcaaa2..2c051f080e9 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -67,6 +67,16 @@ body: description: This can be obtained with `reth db version` validations: required: false + - type: dropdown + id: node + attributes: + label: What type of node are you running? + options: + - Archive (default) + - Full via --full flag + - Pruned with custom reth.toml config + validations: + required: false - type: input attributes: label: If you've built Reth from source, provide the full command you used From 1eb6d1de810f5bc2e0301eaac43f1baee02b74f5 Mon Sep 17 00:00:00 2001 From: Alexey Shekhirin Date: Thu, 12 Oct 2023 14:42:02 +0300 Subject: [PATCH 2/2] ask for prune config --- .github/ISSUE_TEMPLATE/bug.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 2c051f080e9..fdebd38f9a3 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -56,19 +56,21 @@ body: validations: required: false - type: input + id: client-version attributes: label: What version/commit are you on? description: This can be obtained with `reth --version` or `git rev-parse HEAD` if you've built Reth from source validations: required: false - type: textarea + id: database-version attributes: label: What database version are you on? description: This can be obtained with `reth db version` validations: required: false - type: dropdown - id: node + id: node-type attributes: label: What type of node are you running? options: @@ -77,6 +79,13 @@ body: - Pruned with custom reth.toml config validations: required: false + - type: textarea + id: prune-config + attributes: + label: What prune config do you use, if any? + description: `[prune]` section in `reth.toml` file + validations: + required: false - type: input attributes: label: If you've built Reth from source, provide the full command you used