Skip to content

Commit

Permalink
feat: add new issue templates #88 (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
priyankarpal authored Jul 26, 2023
1 parent 952f4f9 commit da4d35e
Show file tree
Hide file tree
Showing 5 changed files with 131 additions and 46 deletions.
55 changes: 55 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: 🐞 Bug Report
description: File a bug report
title: '[Bug]: '
labels: ['bug']
body:
- type: textarea
id: what-happened
attributes:
label: What happened?
placeholder: Add clear descriptions about the bug
validations:
required: true
- type: textarea
id: screenshots
attributes:
label: Add screenshots
placeholder: Add screenshots
validations:
required: true
- type: textarea
id: reproduce
attributes:
label: Steps to reproduce the behavior
placeholder: how to reproduce?
validations:
required: true
- type: textarea
id: expected-behavior
attributes:
label: Expected behavior
placeholder: A clear and concise description of what you expected to happen.
validations:
required: true
- type: dropdown
id: Desktop
attributes:
label: What OS are you seeing the problem on?
multiple: true
options:
- Windows
- MacOS
- Linux
- Other
- type: textarea
id: additional-info
attributes:
label: Additional context
placeholder: [e.g. Version - 0.0.24 , Driver - AWS/GCP/Azure/Kubernetes]
- type: checkboxes
id: terms
attributes:
label: 'Record'
options:
- label: I agree to follow this project's Code of Conduct
required: true
26 changes: 0 additions & 26 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: 🔖 Documentation update
description: Improve Documentation
title: '[Docs]:'
labels: ['documentation']
body:
- type: textarea
id: improve-docs
attributes:
label: what's wrong with the documentation?
description: which things do we need to add?
placeholder: Add description
validations:
required: true
- type: textarea
id: screenshots
attributes:
label: Add screenshots
description: Add screenshots to see the demo
placeholder: Add screenshots
validations:
required: true
- type: checkboxes
id: terms
attributes:
label: 'Record'
options:
- label: I agree to follow this project's Code of Conduct
required: true
48 changes: 48 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: ✨ Feature Request
description: Suggest a new feature request
title: '[Feat]:'
labels: ['enhancement']
body:
- type: textarea
id: what-feature
attributes:
label: What feature?
placeholder: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
validations:
required: true
- type: textarea
id: the-solution
attributes:
label: Describe the solution you'd like
placeholder: A clear and concise description of what you want to happen.
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: Describe alternatives you've considered
placeholder: A clear and concise description of any alternative solutions or features you've considered.
validations:
required: true
- type: textarea
id: additional-context
attributes:
label: Additional context
placeholder: Add any other context or screenshots about the feature request here.
validations:
required: true
- type: textarea
id: screenshots
attributes:
label: Add screenshots
placeholder: Add screenshots
validations:
required: true
- type: checkboxes
id: terms
attributes:
label: 'Record'
options:
- label: I agree to follow this project's Code of Conduct
required: true

20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

0 comments on commit da4d35e

Please sign in to comment.