Skip to content
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
34 changes: 0 additions & 34 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

77 changes: 77 additions & 0 deletions .github/ISSUE_TEMPLATE/01-bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
name: "🐛 Bug Report"
description: File a bug report.
title: "[Bug]: "
labels: "Bug"
body:
- type: markdown
attributes:
value: |
Use this form to file a bug report.
- type: textarea
id: what-happened
attributes:
label: What happened?
description: A concise description of what you're experiencing.
validations:
required: true
- type: textarea
id: expected-behavior
attributes:
label: Expected Behavior
description: Describe what you expected to happen.
validations:
required: false
- type: textarea
id: reproduce-steps
attributes:
label: Steps to Reproduce
description: How can we reproduce this issue?
placeholder: |
1.
2.
3.
validations:
required: false
- type: dropdown
id: version
attributes:
label: PIVX Core Wallet Version
description: What version of the PIVX Core wallet are you using?
multiple: false
options:
- 5.6.1 (Latest Release)
- 5.6.0
- Github master branch (self-compiled)
- 5.5.0 or below (Unsupported)
default: 0
validations:
required: true
- type: textarea
id: sys-platform
attributes:
label: What OS and system specs are you using?
description: Include OS version, RAM amount, and storage type.
value: |
- OS:
- RAM:
- Storage Type (HDD/SSD):
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output. This will will be automatically formatted into code, so no need for backticks.
render: shell
validations:
required: false
- type: textarea
id: extra-info
attributes:
label: Any additional information or context
description: |
Links? References? Anything that will give us more context about the issue you are encountering!

Tip: You can attach image files by clicking this area to highlight it and then dragging files in.
validations:
required: false
58 changes: 58 additions & 0 deletions .github/ISSUE_TEMPLATE/02-feature-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: "\U0001F4A1 Feature Request"
description: Suggest an idea for the PIVX Core wallet.
title: "[Feature Request]: "
labels: "Feature Request"
body:
- type: markdown
attributes:
value: |
Use this form to request additional features and functionality.
- type: textarea
id: problem-related
attributes:
label: Is your feature request related to a problem? Please describe.
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
validations:
required: false
- type: textarea
id: feat-solution
attributes:
label: Describe the solution or feature you'd like
description: A clear and concise description of what you want to happen.
validations:
required: true
- type: dropdown
id: version
attributes:
label: PIVX Core Wallet Version
description: What version of the PIVX Core wallet are you using?
multiple: false
options:
- 5.6.1 (Latest Release)
- 5.6.0
- Github master branch (self-compiled)
- 5.5.0 or below (Unsupported)
default: 0
validations:
required: true
- type: textarea
id: sys-platform
attributes:
label: What OS and system specs are you using?
description: Include OS version, RAM amount, and storage type.
value: |
- OS:
- RAM:
- Storage Type (HDD/SSD):
validations:
required: true
- type: textarea
id: extra-info
attributes:
label: Any additional information or context
description: |
Links? References? Anything that will give us more context about your request!

Tip: You can attach image files by clicking this area to highlight it and then dragging files in.
validations:
required: false
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: true
contact_links:
- name: "\U0001F468‍\U0001F4BB General Community Support"
url: https://discord.pivx.org
about: Please ask general support questions in our discord server.
2 changes: 1 addition & 1 deletion test/lint/lint-whitespace.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if [ -z "${COMMIT_RANGE}" ]; then
fi

showdiff() {
if ! git diff -U0 "${COMMIT_RANGE}" -- "." ":(exclude)depends/patches/" ":(exclude)src/chiabls" ":(exclude)src/immer" ":(exclude)src/leveldb/" ":(exclude)src/secp256k1/" ":(exclude)src/univalue/" ":(exclude)doc/release-notes.md" ":(exclude)doc/release-notes/" ":(exclude)build-aux/snap/local/patches/" ":(exclude)contrib/linearize/"; then
if ! git diff -U0 "${COMMIT_RANGE}" -- "." ":(exclude).github/ISSUE_TEMPLATE/" ":(exclude)depends/patches/" ":(exclude)src/chiabls" ":(exclude)src/immer" ":(exclude)src/leveldb/" ":(exclude)src/secp256k1/" ":(exclude)src/univalue/" ":(exclude)doc/release-notes.md" ":(exclude)doc/release-notes/" ":(exclude)build-aux/snap/local/patches/" ":(exclude)contrib/linearize/"; then
echo "Failed to get a diff"
exit 1
fi
Expand Down