Skip to content

Commit 728d36e

Browse files
authored
chore: add issue templates (#130)
1 parent 8f9a2f6 commit 728d36e

File tree

2 files changed

+85
-0
lines changed

2 files changed

+85
-0
lines changed
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: "\U0001F41E Bug report"
2+
description: Create a report to help us improve Nuxt hints
3+
labels: ["pending triage"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Please carefully read the contribution docs before creating a bug report
9+
👉 https://nuxt.com/docs/4.x/community/reporting-bugs
10+
11+
Please use a template below to create a minimal reproduction
12+
[![Stackblitz](https://img.shields.io/badge/Stackblitz-Nuxt%204-blue?style=flat-square&logo=stackblitz)](https://stackblitz.com/edit/nuxt-starter-ykwulkef?file=nuxt.config.ts)
13+
- type: textarea
14+
id: bug-env
15+
attributes:
16+
label: Environment
17+
description: You can use `npx nuxt info` to fill this section
18+
placeholder: Environment
19+
validations:
20+
required: true
21+
- type: textarea
22+
id: reproduction
23+
attributes:
24+
label: Reproduction
25+
description: Please provide a link to a repo that can reproduce the problem you ran into. A [**minimal reproduction**](https://nuxt.com/docs/4.x/community/reporting-bugs#create-a-minimal-reproduction) is required unless you are absolutely sure that the issue is obvious and the provided information is enough to understand the problem. If a report is vague (e.g. just a generic error message) and has no reproduction, it will receive a "need reproduction" label. If no reproduction is provided we might close it.
26+
placeholder: Reproduction
27+
validations:
28+
required: true
29+
- type: textarea
30+
id: bug-description
31+
attributes:
32+
label: Describe the bug
33+
description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. Thanks!
34+
placeholder: Bug description
35+
validations:
36+
required: true
37+
- type: textarea
38+
id: additional
39+
attributes:
40+
label: Additional context
41+
description: If applicable, add any other context about the problem here
42+
- type: textarea
43+
id: logs
44+
attributes:
45+
label: Logs
46+
description: |
47+
Optional if provided reproduction. Please try not to insert an image but copy paste the log text.
48+
render: shell-script
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: "🚀 Feature request"
2+
description: Suggest a feature that will improve Nuxt hints
3+
labels: ["pending triage"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thank you for taking the time to fill out this feature request!
9+
10+
Please carefully read the contribution docs before suggesting a new feature
11+
👉 https://nuxt.com/docs/4.x/community/contribution/#creating-an-issue
12+
- type: textarea
13+
id: feature-description
14+
attributes:
15+
label: Describe the feature
16+
description: A clear and concise description of what you think would be a helpful addition to nuxt hints, including the possible use cases and alternatives you have considered. If you have a working prototype or module that implements it, please include a link.
17+
placeholder: Feature description
18+
validations:
19+
required: true
20+
- type: checkboxes
21+
id: additional-info
22+
attributes:
23+
label: Additional information
24+
description: Additional information that helps us decide how to proceed.
25+
options:
26+
- label: Would you be willing to help implement this feature?
27+
- label: Could this feature be implemented as a module?
28+
- type: checkboxes
29+
id: required-info
30+
attributes:
31+
label: Final checks
32+
description: Before submitting, please make sure you do the following
33+
options:
34+
- label: Read the [contribution guide](https://nuxt.com/docs/4.x/community/contribution).
35+
required: true
36+
- label: Check existing [discussions](https://github.com/nuxt/hints/discussions) and [issues](https://github.com/nuxt/hints/issues).
37+
required: true

0 commit comments

Comments
 (0)