Skip to content

Commit

Permalink
Issue templates
Browse files Browse the repository at this point in the history
  • Loading branch information
KforG committed Mar 2, 2024
1 parent 3c8af4d commit 76522ab
Show file tree
Hide file tree
Showing 3 changed files with 144 additions and 21 deletions.
21 changes: 0 additions & 21 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

101 changes: 101 additions & 0 deletions .github/ISSUE_TEMPLATE/1-bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
name: Bug report
description: Submit a new bug report.
labels: [bug]
body:
- type: markdown
attributes:
value: |
## This issue tracker is only for technical issues related to Vertcoin OCM.
* General Vertcoin questions and/or support requests should reach out in one of the Vertcoin forums. See more here https://vertcoin.org/community/.
* For reporting security issues, please reach out to the project maintainers or other members of the Vertcoin Github Organization
----
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue already exists for the bug you encountered.
options:
- label: I have searched the existing issues
required: true
type: checkboxes
attributes:
label: Did you read [Common issues and fixes](https://github.com/vertcoin-project/one-click-miner-vnext/issues/618)?.
options:
- label: Yes / Not relevant
required: true
- type: textarea
id: current-behaviour
attributes:
label: Current behaviour
description: Tell us what went wrong. Add pictures if relevant.
validations:
required: true
- type: textarea
id: expected-behaviour
attributes:
label: Expected behaviour
description: Tell us what you expected to happen
validations:
required: true
- type: textarea
id: reproduction-steps
attributes:
label: Steps to reproduce
description: |
Tell us how to reproduce your bug. Please attach related screenshots if necessary.
* Run-time or compile-time configuration options
* Actions taken
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
description: |
Please copy and paste any relevant log output or attach a debug.log file.
You can find the debug.log in your OCM's data directory: Windows: `%appdata%\vertcoin-ocm`or Linux: `.vertcoin-ocm`
Please be aware that the debug log might contain identifying information.
validations:
required: false
- type: dropdown
attributes:
label: How did you obtain Vertcoin OCM?
multiple: false
options:
- Pre-built binaries
- Compiled from source
- Other
validations:
required: true
- type: input
id: ocm-version
attributes:
label: What version of Vertcoin OCM are you using?
description: When OCM is running, the version is listed at the bottom.
placeholder: e.g. v2.2-beta3 or master@e1bf547
validations:
required: true
- type: input
id: os
attributes:
label: Operating system and version
placeholder: e.g. "Windows 10" or "Ubuntu 22.04 LTS"
validations:
required: true
- type: textarea
id: machine-specs
attributes:
label: Machine specifications
description: |
What are the specifications of the host machine?
e.g. CPU and GPU
If building OCM from source please supply used versions of required dependencies.
eg. GO version, NPM version and NodeJS version.
For the GUI-related issue on Linux provide names and versions of a distro, a desktop environment and a graphical shell (if relevant).
validations:
required: false
43 changes: 43 additions & 0 deletions .github/ISSUE_TEMPLATE/2-feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Feature Request
description: Suggest an idea for this project.
labels: [feature]
body:
- type: checkboxes
attributes:
label: Is there an existing feature request for this?
description: Please search to see if a feature request already exists.
options:
- label: I have searched for existing feature requests
required: true
- type: textarea
id: feature
attributes:
label: Please describe the feature you'd like to see added.
description: Attach screenshots or logs if applicable.
validations:
required: true
- type: textarea
id: related-problem
attributes:
label: Is your feature related to a problem, if so please describe it.
description: Attach screenshots or logs if applicable.
validations:
required: false
- type: textarea
id: solution
attributes:
label: Describe the solution you'd like
validations:
required: false
- type: textarea
id: alternatives
attributes:
label: Describe any alternatives you've considered
validations:
required: false
- type: textarea
id: additional-context
attributes:
label: Please leave any additional context
validations:
required: false

0 comments on commit 76522ab

Please sign in to comment.