From 349afffa0471f5feb802a2ca23feb1006c133d9b Mon Sep 17 00:00:00 2001 From: Piotr Stachyra Date: Fri, 16 Jan 2026 17:52:08 +0100 Subject: [PATCH 1/2] Basic bug report template --- .github/ISSUE_TEMPLATE/bug_report.md | 33 ++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..65ce6b5c6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,33 @@ +--- +name: Bug Report +about: Report a bug in Bitkit Android +title: '[BUG] ' +labels: bug +assignees: '' +--- + +## Description + + + +## Steps to Reproduce +1. +2. +3. + +## Actual Behavior + + + +## Expected Behavior + + + +## Logs / Screenshots / Recordings + + + +## Environment +- **Bitkit Version**: +- **Platform**: +- **Network**: From 196eff1f49fea80b2973df91b7817b72611ddade Mon Sep 17 00:00:00 2001 From: Piotr Stachyra Date: Fri, 16 Jan 2026 18:37:33 +0100 Subject: [PATCH 2/2] use yml template instead to support issue type --- .github/ISSUE_TEMPLATE/bug_report.md | 33 ------------- .github/ISSUE_TEMPLATE/bug_report.yml | 71 +++++++++++++++++++++++++++ 2 files changed, 71 insertions(+), 33 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 65ce6b5c6..000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -name: Bug Report -about: Report a bug in Bitkit Android -title: '[BUG] ' -labels: bug -assignees: '' ---- - -## Description - - - -## Steps to Reproduce -1. -2. -3. - -## Actual Behavior - - - -## Expected Behavior - - - -## Logs / Screenshots / Recordings - - - -## Environment -- **Bitkit Version**: -- **Platform**: -- **Network**: diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 000000000..855b2949e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,71 @@ +name: Bug Report +description: Report a bug in Bitkit Android +title: '' +type: bug +body: + - type: textarea + id: description + attributes: + label: Description + description: Brief description of the issue or additional context + validations: + required: true + + - type: textarea + id: steps + attributes: + label: Steps to Reproduce + value: | + 1. + 2. + 3. + validations: + required: true + + - type: textarea + id: actual + attributes: + label: Actual Behavior + description: What actually happened + validations: + required: true + + - type: textarea + id: expected + attributes: + label: Expected Behavior + description: What you expected to happen + validations: + required: true + + - type: textarea + id: logs + attributes: + label: Logs / Screenshots / Recordings + description: Attach relevant logs, screenshots, or screen recordings + validations: + required: false + + - type: input + id: version + attributes: + label: Bitkit Version + placeholder: e.g., 2.0.0 or commit SHA + validations: + required: false + + - type: input + id: platform + attributes: + label: Platform + placeholder: e.g., Pixel 7 / Emulator / Android 14 + validations: + required: false + + - type: input + id: network + attributes: + label: Network + placeholder: e.g., mainnet / regtest / local + validations: + required: false