Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added issue templates #78

Merged
merged 1 commit into from
Jan 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Bug report 🐛
description: Create a bug report.
labels: ['bug', 'pending assessment']
body:
- type: checkboxes
attributes:
label: Latest version
description: Bug reports shall always happen on the latest version. This could either be the latest npm package or by checking the latest storybook.
options:
- label: I have tested the latest version
required: true
- type: textarea
attributes:
label: Steps to reproduce
description: |
**⚠️ Issues that we can't reproduce can't be fixed.**

Please provide detailed information on how to reproduce the issue.
value: |
Steps:
1.
2.
3.
- type: textarea
attributes:
label: Current behavior
description: Describe what happens instead of the expected behavior.
- type: textarea
attributes:
label: Expected behavior
description: Describe what should happen.
- type: textarea
attributes:
label: Context
description: What are you trying to accomplish? Providing context helps us come up with a solution that is more useful in the real world.
23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Feature request 💄
description: Suggest a new feature or enhancement.
labels: ['enhancement', 'pending assessment']
body:
- type: checkboxes
attributes:
label: Not a duplicate
description: Before opening a feature request, please check if it has already been suggested. If it has, add a comment to the existing issue instead of opening a new one.
options:
- label: I have checked that this feature does not already exist
required: true
- type: textarea
attributes:
label: Summary
description: Describe how it should work.
- type: textarea
attributes:
label: Examples
description: Provide a link to Design specification, other implementations, or screenshots of the expected behavior.
- type: textarea
attributes:
label: Motivation
description: What are you trying to accomplish? Providing context helps us come up with a solution that is more useful in the real world.
Loading