Skip to content
This repository was archived by the owner on Nov 15, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 66 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: Bug Report
description: Create a report to help us improve
labels: [ "bug", "triage" ]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: textarea
id: description
attributes:
label: Description
description: A concise description of the bug, what happened?
placeholder: What did you see...
validations:
required: true
- type: textarea
id: reproduce
attributes:
label: How to Reproduce
description: Steps or code to reproduce the behavior.
placeholder: How can we reproduce it...
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected Result
description: What did you expected to happen.
placeholder: Tell us what you were expecting...
validations:
required: true
- type: textarea
id: version
attributes:
label: Version
description: Which release version(s), commit, or branch of code do you see this bug?
placeholder: Tell us which version(s) of code you saw the bug in...
validations:
required: true
- type: checkboxes
id: artifact
attributes:
label: Artifact
description: With which artifact(s) are you seeing this bug?
options:
- label: bdk-jvm
- label: bdk-android
- type: checkboxes
id: platform
attributes:
label: Platform
description: What target platform(s) are you seeing the problem on?
options:
- label: ARM64 Android
- label: 64-bit x86 Android
- label: 32-bit x86 Android
- label: 64-bit x86 Linux (kernel 2.6.32+, glibc 2.11+)
- label: 64-bit x86 macOS (10.7+, Lion+)
- label: ARM64 macOS (11.0+, Big Sur+)
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
render: shell
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
blank_issues_enabled: true
contact_links:
- name: 📝 Official Documentation
url: https://bitcoindevkit.org/getting-started/
about: Check our documentation for answers to common questions
- name: 💬 Community Chat
url: https://discord.com/invite/dstn4dQ
about: Ask general questions and get community support in real-time
32 changes: 32 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Feature Request
description: Request a new feature
labels: [ "enhancement", "triage" ]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to request and document this new feature!
- type: textarea
id: problem
attributes:
label: Problem
description: A concise description of the problem you need this new feature to solve.
placeholder: What is the problem you are trying to solve...
validations:
required: true
- type: textarea
id: description
attributes:
label: Description
description: A concise description of the new feature you need.
placeholder: What will this new feature do, how will it work...
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: Alternatives
description: Describe any other alternatives you considered.
placeholder: Other ways you considered to solve your problem...
validations:
required: false
30 changes: 30 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!-- Erase any parts of this template not applicable to your Pull Request. -->

### Description

<!-- Describe the purpose of this PR, what's being adding and/or fixed -->

### Notes to the reviewers

<!-- In this section you can include notes directed to the reviewers, like explaining why some parts
of the PR were done in a specific way -->

### 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