Skip to content

Commit

Permalink
chore: add initial issue templates
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Schuetz <thomas.schuetz@whizus.com>
  • Loading branch information
thschue committed May 15, 2023
1 parent 784b8ca commit a3e31c7
Show file tree
Hide file tree
Showing 2 changed files with 131 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: Feature Request
description: Suggest and idea for this project
title: "[Feature]: <Feature Request Title>"
labels: ["type:feature"]
body:
- type: markdown
attributes:
value: |
Thank you for initiating this feature request !🤗
- type: checkboxes
id: checklist
attributes:
label: Checklist
description: "Please check the following before submitting this feature request"
options:
- label: I've searched for similar issues and couldn't find anything matching
required: true

- type: dropdown
id: problem
attributes:
label: Is this feature request related to a problem?
options:
- "Yes"
- "No"
- type: textarea
id: problem_description
attributes:
label: Problem Description
description: If yes, please provide a clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
validations:
required: false
- type: textarea
id: solution_description
attributes:
label: Solution Description
description: A clear and concise description of what you want to happen
validations:
required: true
- type: textarea
id: benefits_description
attributes:
label: Benefits
description: Describe the benefits this feature will bring to the project and its users
validations:
required: true
- type: textarea
id: drawbacks
attributes:
label: Potential Drawbacks
description: Describe any potential drawbacks this feature might bring to the project and its users.
- type: textarea
id: additional_information
attributes:
label: Additional Information
description: Add any other context about your feature request here. If applicable, add drawings to help explain.
75 changes: 75 additions & 0 deletions .github/ISSUE_TEMPLATE/question.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
name: Question / Bug Report
description: Create a report to help us improve
title: "[Question]: <Question Title>"
labels: ["type:question"]
body:
- type: markdown
attributes:
value: |
Thank you for initiating this question! 🤗
- type: checkboxes
id: checklist
attributes:
label: Checklist
description: "Please check the following before submitting this feature request"
options:
- label: I've searched for similar issues and couldn't find anything matching
required: true
- label: I've included steps to reproduce the behavior
required: true

- type: input
id: glasskube_version
attributes:
label: Glasskube Version
description: Which version of Glasskube are you using?
placeholder: "v0.0.1"

- type: input
id: kubernetes_version
attributes:
label: Kubernetes Version
description: Which version of Kubernetes are you using?
placeholder: "v1.26.0"

- type: input
id: host_os
attributes:
label: Host OS and its Version
description: Which OS are you using (Windows/MacOS/Linux - Distro and Version)?

- type: textarea
id: reproduce
attributes:
label: Steps to reproduce
description: Tell us how to reproduce this question
placeholder: |
1. Run '...'
2. Type '...'
3. See error
validations:
required: true

- type: textarea
id: expected
attributes:
label: Expected behaviour
description: Tell us what should happen
placeholder: |
A clear and concise description of what you expected to happen.
validations:
required: true

- type: textarea
id: actual
attributes:
label: Actual behaviour
description: Tell us what happens instead
placeholder: |
A clear and concise description of what actually happens.
- type: textarea
id: additional_information
attributes:
label: Additional Information
description: Add any other context about the problem here. If applicable, add drawings to help explain (after saving this issue).

0 comments on commit a3e31c7

Please sign in to comment.