From b3637b4a63722ef85d2273c8ac8da9a180f66ae6 Mon Sep 17 00:00:00 2001 From: Freddy Li Date: Mon, 8 Jan 2024 10:50:30 -0500 Subject: [PATCH] chore: add bug and issue template (#147) Co-authored-by: Freddy Li --- .github/ISSUE_TEMPLATE/bug_report.md | 58 +++++++++++++++++++ .../ISSUE_TEMPLATE/pull_request_template.md | 39 +++++++++++++ 2 files changed, 97 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..c4cc4136 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,58 @@ +--- +name: Bug report +about: Create a report to help us improve +title: "" +labels: "" +assignees: "" +--- + + + + +## Short Context + + + +## Preconditions + +1. +2. + +## Steps to Reproduce + + + + +1. +2. +3. +4. + +## Expected Behavior + + + + +## Actual Behavior + + + + +## Possible Solution (optional) + + + + +## Version + +Sygma commit (or docker tag): +sygma-solidity version: +sygma-substrate version: +Go version: \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/pull_request_template.md b/.github/ISSUE_TEMPLATE/pull_request_template.md new file mode 100644 index 00000000..1cb2f344 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/pull_request_template.md @@ -0,0 +1,39 @@ + + +## Description + + + +## Related Issue Or Context + + + + + +Closes: # + +## How Has This Been Tested? Testing details. + + + + + +## Types of changes + + + +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- [ ] Breaking change (fix or feature that would cause existing functionality to change) +- [ ] Documentation + +## Checklist: + + + + +- [ ] I have commented my code, particularly in hard-to-understand areas. +- [ ] I have ensured that all acceptance criteria (or expected behavior) from issue are met +- [ ] I have updated the documentation locally and in sygma-docs. +- [ ] I have added tests to cover my changes. +- [ ] I have ensured that all the checks are passing and green, I've signed the CLA bot \ No newline at end of file