From 46850ed4710a18bc2db785d6816b6acddcfced5f Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Mon, 25 Jul 2022 13:06:27 -0700 Subject: [PATCH] Add github issue templates and PR template --- .github/ISSUE_TEMPLATE/bug_report.md | 26 ++++++++ .github/ISSUE_TEMPLATE/summer_project.md | 77 ++++++++++++++++++++++++ .github/pull_request_template.md | 30 +++++++++ 3 files changed, 133 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/summer_project.md create mode 100644 .github/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 0000000..0708e29 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,26 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: 'bug' +assignees: '' + +--- + +**Describe the bug** + + +**To Reproduce** + + +**Expected behavior** + + +**Build environment** + - BDK tag/commit: + - OS+version: + - Rust/Cargo version: + - Rust/Cargo target: + +**Additional context** + diff --git a/.github/ISSUE_TEMPLATE/summer_project.md b/.github/ISSUE_TEMPLATE/summer_project.md new file mode 100644 index 0000000..a693283 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/summer_project.md @@ -0,0 +1,77 @@ +--- +name: Summer of Bitcoin Project +about: Template to suggest a new https://www.summerofbitcoin.org/ project. +title: '' +labels: 'summer-of-bitcoin' +assignees: '' + +--- + + + +**Description** + + +**Expected Outcomes** + + +**Resources** + + + + + + +**Skills Required** + + + + + + + +**Mentor(s)** + + +**Difficulty** + + +**Competency Test (optional)** + + + + + + + diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..3dbc5fd --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,30 @@ + + +### Description + + + +### Notes to the reviewers + + + +### Checklists + +#### All Submissions: + +* [ ] I've signed all my commits +* [ ] I followed the [contribution guidelines](https://github.com/bitcoindevkit/bdk/blob/master/CONTRIBUTING.md) +* [ ] I ran `cargo fmt` and `cargo clippy` before committing + +#### New Features: + +* [ ] I've added tests for the new feature +* [ ] I've added docs for the new feature +* [ ] I've updated `CHANGELOG.md` + +#### Bugfixes: + +* [ ] This pull request breaks the existing API +* [ ] I've added tests to reproduce the issue which are now passing +* [ ] I'm linking the issue being fixed by this PR