Skip to content

Commit

Permalink
feat: add issue_template (#452)
Browse files Browse the repository at this point in the history
Signed-off-by: ismael FALL <[email protected]>

Signed-off-by: ismael FALL <[email protected]>
  • Loading branch information
Doozers authored Sep 14, 2022
1 parent 2cb9e88 commit 9a46c6f
Show file tree
Hide file tree
Showing 2 changed files with 112 additions and 0 deletions.
69 changes: 69 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: Bug Report
description: File a bug report
title: "[Bug]: "
labels: ["bug", "triage"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: textarea
id: description
attributes:
label: Description
description: Describe your bug shortly.
placeholder: Tell us what you see!
value: "A bug happened!"
validations:
required: true
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Describe your bug with as much details as possible.
placeholder: Tell us what you see!
value: "A bug happened!"
validations:
required: true
- type: textarea
id: expected-behaviour
attributes:
label: Expected behaviour
description: Describe what should happened with as much details as possible.
placeholder: Tell us what should happened!
value: "This should happened!"
validations:
required: true
- type: textarea
id: environment
attributes:
label: Environment
description: Describe your environment with as much details as possible.
placeholder: Tell us what is your environment!
value: "- OS and version\n- Branch that causes this bug"
validations:
required: true
- type: textarea
id: steps-to-reproduce
attributes:
label: Steps to reproduce
description: List the steps to reproduce with as much details as possible.
placeholder: Tell us how to reproduce this bug!
value: "- You have to do this!\n- Then this!"
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
render: C++
validations:
required: false
- type: textarea
id: proposed-solution
attributes:
label: Proposed solution
description: If you have an idea of how to fix this issue, please write it down here, so we can begin discussing it.
validations:
required: false
43 changes: 43 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Feature Request
description: File a feature request
title: "[Feature]: "
labels: ["feature", "triage"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this feature request!
- type: textarea
id: description
attributes:
label: Description
description: Describe your feature shortly.
placeholder: Tell us what you want to see!
value: "A new feature!"
validations:
required: true
- type: textarea
id: expected-behaviour
attributes:
label: Expected behaviour
description: Describe what you want to happen with as much details as possible.
placeholder: Tell us what you want to happen!
value: "This should happened!"
validations:
required: true
- type: textarea
id: environment
attributes:
label: Environment
description: Describe your environment with as much details as possible.
placeholder: Tell us what is your environment!
value: "- OS and version"
validations:
required: true
- type: textarea
id: proposed-solution
attributes:
label: Proposed solution
description: If you have an idea of how to realise this feature, please write it down here, so we can begin discussing it.
validations:
required: false

0 comments on commit 9a46c6f

Please sign in to comment.