From dd4639b047614e2e40bcbff89c2db15a9576ae58 Mon Sep 17 00:00:00 2001 From: Denis Fadeev Date: Sat, 8 Jun 2024 16:38:57 +0700 Subject: [PATCH 1/5] chore: add an issue form template for setting up a node --- .github/ISSUE_TEMPLATE/syncing.yaml | 43 +++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/syncing.yaml diff --git a/.github/ISSUE_TEMPLATE/syncing.yaml b/.github/ISSUE_TEMPLATE/syncing.yaml new file mode 100644 index 0000000000..38dfdbc5c9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/syncing.yaml @@ -0,0 +1,43 @@ +name: Issue with setting up or syncing a node +body: + - type: dropdown + attributes: + label: Network + description: Which environment are you setting a node for? + options: + - Mainnet + - Testnet + - type: dropdown + attributes: + label: Does your machine match the technical requirements? + description: See https://www.zetachain.com/docs/validators/requirements/ + options: + - Yes + - No + - type: dropdown + attributes: + label: Have you completed the setup? + description: See https://www.zetachain.com/docs/validators/setup/ + options: + - Yes + - No + - type: dropdown + attributes: + label: Which method are you using? + description: If you used different methods, please, create separate issues. + options: + - State-Sync + - Snapshot + - KSYNC + - type: textarea + attributes: + label: Please, share the contents of `config.toml` + description: By default the file is in `$HOME/.zetacored/config/` + - type: textarea + attributes: + label: Please, share the contents of `app.toml` + description: By default the file is in `$HOME/.zetacored/config/` + - type: textarea + attributes: + label: Additional details + description: Any other information that might help us resolve your issue. From 29a832efc387d7773debc2c716b87ebbfb26bd5f Mon Sep 17 00:00:00 2001 From: Denis Fadeev Date: Sat, 8 Jun 2024 16:42:10 +0700 Subject: [PATCH 2/5] fix: bool --- .github/ISSUE_TEMPLATE/syncing.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/syncing.yaml b/.github/ISSUE_TEMPLATE/syncing.yaml index 38dfdbc5c9..2210ab4942 100644 --- a/.github/ISSUE_TEMPLATE/syncing.yaml +++ b/.github/ISSUE_TEMPLATE/syncing.yaml @@ -19,8 +19,8 @@ body: label: Have you completed the setup? description: See https://www.zetachain.com/docs/validators/setup/ options: - - Yes - - No + - "Yes" + - "No" - type: dropdown attributes: label: Which method are you using? From 6e452e149eab3e638932c9192af8b75da10c2d5b Mon Sep 17 00:00:00 2001 From: Denis Fadeev Date: Sat, 8 Jun 2024 16:43:35 +0700 Subject: [PATCH 3/5] fix: bool --- .github/ISSUE_TEMPLATE/syncing.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/syncing.yaml b/.github/ISSUE_TEMPLATE/syncing.yaml index 2210ab4942..a48381d826 100644 --- a/.github/ISSUE_TEMPLATE/syncing.yaml +++ b/.github/ISSUE_TEMPLATE/syncing.yaml @@ -12,8 +12,8 @@ body: label: Does your machine match the technical requirements? description: See https://www.zetachain.com/docs/validators/requirements/ options: - - Yes - - No + - "Yes" + - "No" - type: dropdown attributes: label: Have you completed the setup? From 19bcd10dd3f7f6cff753c7b401bb90eec17f7db6 Mon Sep 17 00:00:00 2001 From: Denis Fadeev Date: Sat, 8 Jun 2024 16:44:56 +0700 Subject: [PATCH 4/5] description --- .github/ISSUE_TEMPLATE/syncing.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/syncing.yaml b/.github/ISSUE_TEMPLATE/syncing.yaml index a48381d826..221946f4ee 100644 --- a/.github/ISSUE_TEMPLATE/syncing.yaml +++ b/.github/ISSUE_TEMPLATE/syncing.yaml @@ -1,4 +1,5 @@ name: Issue with setting up or syncing a node +description: Please fill out the following form to help us understand and resolve your issue with setting up or syncing a node. Provide as much detail as possible to ensure a quick and accurate resolution. body: - type: dropdown attributes: From 69b025b3ce98cf45ccaed8a7a107c595bb2a2ac0 Mon Sep 17 00:00:00 2001 From: Denis Fadeev Date: Sat, 8 Jun 2024 16:48:06 +0700 Subject: [PATCH 5/5] fix: formatting --- .github/ISSUE_TEMPLATE/syncing.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/syncing.yaml b/.github/ISSUE_TEMPLATE/syncing.yaml index 221946f4ee..1735961336 100644 --- a/.github/ISSUE_TEMPLATE/syncing.yaml +++ b/.github/ISSUE_TEMPLATE/syncing.yaml @@ -3,8 +3,7 @@ description: Please fill out the following form to help us understand and resolv body: - type: dropdown attributes: - label: Network - description: Which environment are you setting a node for? + label: Which environment are you setting a node for? options: - Mainnet - Testnet @@ -32,11 +31,11 @@ body: - KSYNC - type: textarea attributes: - label: Please, share the contents of `config.toml` + label: Please, share the contents of config.toml description: By default the file is in `$HOME/.zetacored/config/` - type: textarea attributes: - label: Please, share the contents of `app.toml` + label: Please, share the contents of app.toml description: By default the file is in `$HOME/.zetacored/config/` - type: textarea attributes: