mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-16 19:18:32 +02:00
convert bug report from markdown to yaml
This commit is contained in:
parent
bb6491bd06
commit
46b0891d79
2 changed files with 74 additions and 42 deletions
42
.github/ISSUE_TEMPLATE/bug_report.md
vendored
42
.github/ISSUE_TEMPLATE/bug_report.md
vendored
|
@ -1,42 +0,0 @@
|
|||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve
|
||||
title: ''
|
||||
labels: ":new:, bug"
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
## Bug Report
|
||||
<!--
|
||||
Hello, and thank you for reporting an issue!
|
||||
Please fill out the points below, as it will make our process much easier.
|
||||
-->
|
||||
|
||||
<!-- Please tell us about your environment -->
|
||||
### Environment
|
||||
- `jrnl --diagnostic` output: <!-- Run the command and paste the output here -->
|
||||
- Install method: <!-- How did you install jrnl? (pipx, brew, etc) -->
|
||||
|
||||
### Current Behavior
|
||||
<!--
|
||||
Please put a short description of what is currently happening.
|
||||
-->
|
||||
|
||||
### Expected Behavior
|
||||
<!--
|
||||
Please write a short description of what you would expect to happen
|
||||
(instead of what is currently happening).
|
||||
-->
|
||||
|
||||
### Repro Steps
|
||||
<!--
|
||||
Please provide the steps to reproduce the problem. It is important for you to
|
||||
be as precise as possible here, since more info will let us help you faster.
|
||||
If applicable, please run jrnl with --debug and paste the output.
|
||||
-->
|
||||
|
||||
### Other Information
|
||||
<!-- (e.g. more detailed explanation, stacktraces, related
|
||||
issues, suggestions how to fix, links for us to have context, eg.
|
||||
stackoverflow, gitter, etc) -->
|
74
.github/ISSUE_TEMPLATE/bug_report.yaml
vendored
Normal file
74
.github/ISSUE_TEMPLATE/bug_report.yaml
vendored
Normal file
|
@ -0,0 +1,74 @@
|
|||
name: Bug Report
|
||||
description: Create a report to help us improve
|
||||
title: "Bug Report"
|
||||
labels: [ ":new:", "bug" ]
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
# Bug Report
|
||||
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: Current Behavior
|
||||
description: Please put a short description of what is currently happening.
|
||||
placeholder: Tell us what is happening
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: expected-behavior
|
||||
attributes:
|
||||
label: Expected Behavior
|
||||
description: Please write a short description of what you would expect to happen
|
||||
placeholder: Tell us what should be happening
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: repro-steps
|
||||
attributes:
|
||||
label: Repro Steps
|
||||
description: |
|
||||
Provide the steps to reproduce the problem.
|
||||
|
||||
Please be as precise as possible, since more info will let us help you faster.
|
||||
placeholder: Repro steps
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: debug-output
|
||||
attributes:
|
||||
label: Debug output
|
||||
description: |
|
||||
Please provide the output of your command with the `--debug` flag on.
|
||||
placeholder: "example: `jrnl --debug lorem ipsum`"
|
||||
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