Skip to content

Commit

Permalink
Add ISSUE_TEMPLATE (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
kse3hi authored Jul 6, 2023
1 parent e5a4a6a commit 0a4dc78
Show file tree
Hide file tree
Showing 6 changed files with 145 additions and 121 deletions.
32 changes: 0 additions & 32 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

83 changes: 83 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
name: 🐞 Bug Report
description: Provide a general summary of the bug in the title below.
title: "[Bug]: "
labels:
- bug
body:
- type: markdown
attributes:
value: |
**Thank you :heart: for taking the time to fill out this bug report!**
- type: dropdown
id: severity
validations:
required: true
attributes:
label: Severity
description: How severe is the bug in your opinion?
multiple: false
options:
- "Trivial"
- "Medium"
- "High"
- "Critical"
- "Blocker"
- type: input
id: version
validations:
required: true
attributes:
label: What release version, tag or commit-hash did you use?
description: Please include a link if possible.
placeholder: v0.1.0 or 06f432a00e4c66804202c91bdfb9c9b12823928b
- type: textarea
id: current-behavior
validations:
required: true
attributes:
label: Current Behavior
description: Tell us what happened instead of the expected behavior.
placeholder: Error message appeared when I cloned a repository...
- type: textarea
id: steps-to-reproduce
validations:
required: true
attributes:
label: Steps to Reproduce
description: Provide a link to a live example, or an unambiguous set of steps to reproduce this bug. Include code to reproduce, if relevant
placeholder: |
1. ...
2. ...
3. ...
- type: textarea
id: expected-behavior
validations:
required: true
attributes:
label: Expected Behavior
description: Tell us what should happen
placeholder: Clone of repository shall be prune of errors.
- type: textarea
id: possible-solution
validations:
required: false
attributes:
label: Possible Solution
description: Fix/reason of the bug suggestion
placeholder: A possible solution or fix is...
- type: textarea
id: additional-information
validations:
required: false
attributes:
label: Additional Information
description: Provide an additional detailed description / screenshots / evidences of the bug
placeholder: I would like to add...
- type: checkboxes
id: code-of-conduct
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our "Code of Conduct".
options:
- label: I agree to follow this project's "Code of Conduct".
required: true
67 changes: 0 additions & 67 deletions .github/ISSUE_TEMPLATE/bug_report.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

45 changes: 45 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: 🛠️ Feature Request
description: Suggest an idea to help us improve our product.
title: "[Feature]: "
labels:
- "enhancement"
body:
- type: markdown
attributes:
value: |
**Thank you :heart: for taking the time to fill out this feature request report!**
We kindly ask you to search if an issue already exists for your requested feature.
We are happy about contributions from all users.
- type: textarea
attributes:
label: Description
description: |
A clear and concise description of the feature you're interested in.
validations:
required: true

- type: textarea
attributes:
label: Suggested Solution
description: |
Describe the solution you'd like to be implemented. Provide a clear and concise description of what you want to happen.
validations:
required: false

- type: textarea
attributes:
label: Alternatives
description: |
Describe alternatives you've considered.
A clear and concise description of alternative solutions or features you've considered.
validations:
required: false

- type: textarea
attributes:
label: Additional Context
description: |
Add any other context about the problem here.
validations:
required: false
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/question.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: ❓ Question or general issue
description: Approach us with a question
title: "[Q]: "
labels:
- question
body:
- type: markdown
attributes:
value: |
**We are happy that you have a question to ask!**
- type: textarea
validations:
required: true
attributes:
label: Question
description: Feel free to ask us if you need assistance
placeholder: How can I create a repository based on your template?

0 comments on commit 0a4dc78

Please sign in to comment.