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

chore: add issue template form #1913

Merged
merged 3 commits into from
Jan 29, 2024
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
65 changes: 65 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: "\U0001F41E Bug report"
description: Create a bug report
title: "[Bug]: "
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
**Before You Start...**

Thank you for taking the time to report a bug!
Please make sure to fill as much details as possible to help us better understand the bug.
If you have a question, suggestion, feature request, or need for help, please ask on [GitHub Discussions](https://github.com/mondaycom/monday-ui-react-core/discussions).
Thanks!
- type: input
id: version
attributes:
label: Vibe version
placeholder: e.g. 2.84.0
validations:
required: true
- type: textarea
id: description
attributes:
label: Describe the bug
description: A clear and concise description of what the bug is
validations:
required: true
- type: textarea
id: expected-behavior
attributes:
label: Expected behavior
description: A clear description of what you expect to happen
validations:
required: true
- type: textarea
id: steps-to-reproduce
attributes:
label: Steps to reproduce
placeholder: |
e.g.
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See '....'
validations:
required: true
- type: input
id: reproduction-example-link
attributes:
label: Reproduction example link
description: |
Please provide a simple minimal example that reproduces the bug. Use this [StackBlitz](https://stackblitz.com/edit/vibe-bug-report) or anything similar
- type: textarea
id: system-info
attributes:
label: System Info
description: Please run and copy the output of `npx envinfo --system --npmPackages monday-ui-react-core,react --binaries --browsers`
render: shell
placeholder: Operating System, Browsers, React version
- type: textarea
id: additional-context
attributes:
label: Additional context, Screenshots
description: Add any other context. If applicable, add screenshots or a video to further explain the bug
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
blank_issues_enabled: false
contact_links:
- name: Feature Request
url: https://github.com/mondaycom/monday-ui-react-core/discussions
about: Suggest new features
- name: Questions & Discussions
url: https://github.com/mondaycom/monday-ui-react-core/discussions
about: Use GitHub discussions for questions and suggestions
- name: Storybook Docs
url: https://style.monday.com/
about: Check out our docs and examples in Storybook
Loading