mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-17 11:38:32 +02:00
convert support request template from markdown to yaml
This commit is contained in:
parent
edd9d5a81b
commit
1330802337
2 changed files with 54 additions and 40 deletions
40
.github/ISSUE_TEMPLATE/support_request.md
vendored
40
.github/ISSUE_TEMPLATE/support_request.md
vendored
|
@ -1,40 +0,0 @@
|
||||||
---
|
|
||||||
name: Support Request
|
|
||||||
about: Get help with jrnl
|
|
||||||
title: ''
|
|
||||||
labels: ":new:, support"
|
|
||||||
assignees: ''
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Support Request
|
|
||||||
<!--
|
|
||||||
Hello, and thank you for reporting an issue!
|
|
||||||
Please fill out the points below, as it will make our process much easier.
|
|
||||||
-->
|
|
||||||
|
|
||||||
### Environment
|
|
||||||
<!--
|
|
||||||
Please tell us about your environment
|
|
||||||
-->
|
|
||||||
- Jrnl `--diagnostic` output: <!-- Run `jrnl --diagnostic` and paste the output -->
|
|
||||||
- Install method: <!-- How did you install jrnl? (pipx, brew, etc) -->
|
|
||||||
|
|
||||||
### What are you trying to do?
|
|
||||||
<!--
|
|
||||||
Please write a short description of what is happening.
|
|
||||||
-->
|
|
||||||
|
|
||||||
### What have you tried?
|
|
||||||
<!--
|
|
||||||
Have you tried anything to fix the problem? This can help give us more
|
|
||||||
information to help you with.
|
|
||||||
-->
|
|
||||||
|
|
||||||
### Other Information
|
|
||||||
<!--
|
|
||||||
If applicable, please run jrnl with --debug and paste the output.
|
|
||||||
|
|
||||||
Is there anything else we should know that might be helpful?
|
|
||||||
e.g. detailed explanation, stacktraces, related issues, suggestions how to fix
|
|
||||||
-->
|
|
54
.github/ISSUE_TEMPLATE/support_request.yaml
vendored
Normal file
54
.github/ISSUE_TEMPLATE/support_request.yaml
vendored
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
name: Support Request
|
||||||
|
description: Get help with jrnl
|
||||||
|
title: Support Request
|
||||||
|
labels: [ ":new:", "support" ]
|
||||||
|
body:
|
||||||
|
- type: markdown
|
||||||
|
attributes:
|
||||||
|
value: |
|
||||||
|
# Support Request
|
||||||
|
Hello, and thank you for reporting an issue!
|
||||||
|
|
||||||
|
Please fill out the points below, as it will make our process much easier.
|
||||||
|
|
||||||
|
- type: textarea
|
||||||
|
id: diagnostic
|
||||||
|
attributes:
|
||||||
|
label: Diagnostic output
|
||||||
|
description: Run `jrnl --diagnostic` and paste the output below
|
||||||
|
placeholder: Paste output here
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
|
||||||
|
- type: textarea
|
||||||
|
id: current-behavior
|
||||||
|
attributes:
|
||||||
|
label: What are you trying to do?
|
||||||
|
description: Please put a short description of what is happening.
|
||||||
|
placeholder: Tell us what is happening
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
|
||||||
|
- type: textarea
|
||||||
|
id: tried
|
||||||
|
attributes:
|
||||||
|
label: What have you tried?
|
||||||
|
description: >
|
||||||
|
Have you tried anything to fix the problem? This can help give us more
|
||||||
|
information to help you with.
|
||||||
|
placeholder: Tell us what should be happening
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
|
||||||
|
- type: textarea
|
||||||
|
id: other-info
|
||||||
|
attributes:
|
||||||
|
label: Other Information
|
||||||
|
description: >
|
||||||
|
Is there anything else we should know?
|
||||||
|
|
||||||
|
(e.g. more detailed explanation, stacktraces, related
|
||||||
|
issues, suggestions how to fix, links for us to have context, eg.
|
||||||
|
stackoverflow, gitter, etc)
|
||||||
|
validations:
|
||||||
|
required: false
|
Loading…
Add table
Reference in a new issue