From 20236502c8f279f4409737d7a2afa4f1e4553928 Mon Sep 17 00:00:00 2001 From: Thiago Coimbra Lemos Date: Fri, 31 Mar 2023 11:10:33 +0200 Subject: [PATCH] add issue templates (#1893) --- .github/ISSUE_TEMPLATE/bug.md | 31 ++++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature.md | 17 ++++++++++++++++ .github/ISSUE_TEMPLATE/question.md | 9 +++++++++ 3 files changed, 57 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.md create mode 100644 .github/ISSUE_TEMPLATE/feature.md create mode 100644 .github/ISSUE_TEMPLATE/question.md diff --git a/.github/ISSUE_TEMPLATE/bug.md b/.github/ISSUE_TEMPLATE/bug.md new file mode 100644 index 0000000000..c7c848431c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.md @@ -0,0 +1,31 @@ +--- +name: Report a bug +about: Something with Polygon zkEVM is not working as expected +title: '' +labels: 'type:bug' +assignees: '' +--- + +#### System information + +zkEVM Node version: `v0.0.X-RCXX` +OS & Version: `Windows/Linux/OSX` +Commit hash : (if `develop`) +Network: `Mainnet/Testnet` + +#### Expected behaviour + + +#### Actual behaviour + + +#### Steps to reproduce the behaviour + + +#### Backtrace + +```` +[backtrace] +```` + +When submitting logs: please submit them as text and not screenshots. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature.md b/.github/ISSUE_TEMPLATE/feature.md new file mode 100644 index 0000000000..aacd885f9e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.md @@ -0,0 +1,17 @@ +--- +name: Request a feature +about: Report a missing feature - e.g. as a step before submitting a PR +title: '' +labels: 'type:feature' +assignees: '' +--- + +# Rationale + +Why should this feature exist? +What are the use-cases? + +# Implementation + +Do you have ideas regarding the implementation of this feature? +Are you willing to implement this feature? \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md new file mode 100644 index 0000000000..2d06858d17 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.md @@ -0,0 +1,9 @@ +--- +name: Ask a question +about: Something is unclear +title: '' +labels: 'type:question' +assignees: '' +--- + +This should only be used in very rare cases e.g. if you are not 100% sure if something is a bug or asking a question that leads to improving the documentation.