Skip to content

Commit 98d09b0

Browse files
committed
chore: move to github forms
1 parent e0e3493 commit 98d09b0

File tree

4 files changed

+76
-51
lines changed

4 files changed

+76
-51
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 31 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: "\U0001F41E Bug report"
2+
description: Report an issue with Pinia
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
Thanks for taking the time to fill out this bug report!
8+
- type: input
9+
id: reproduction
10+
attributes:
11+
label: Reproduction
12+
description: "If possible, provide a boiled down editable reproduction using a service like JSFiddle, Codepen, CodeSandbox, or a GitHub repository based on this template: https://github.com/piniajs/bug-report. A failing unit test is even better! Otherwise provide as much information as possible to reproduce the problem. You can find examples of different environments at https://github.com/piniajs?q=example&type=source and use them as a bug reproduction. If no reproduction is provided and the information is not enough to reproduce the problem, we won't be able to give it a look **and the issue will be converted into a question and moved to discussions**."
13+
placeholder: Reproduction
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: steps
18+
attributes:
19+
label: Steps to reproduce the bug
20+
description: |
21+
1. Click on ...
22+
2. Check log
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: expected-behavior
27+
attributes:
28+
label: Expected behavior
29+
description: A clear and concise description of what you expected to happen.
30+
validations:
31+
required: true
32+
- type: textarea
33+
id: actual-behavior
34+
attributes:
35+
label: Actual behavior
36+
description: 'A clear and concise description of what actually happens.'
37+
validations:
38+
required: true
39+
- type: textarea
40+
id: other-info
41+
attributes:
42+
label: Additional information
43+
description: Add any other context about the problem here.
44+
- type: markdown
45+
attributes:
46+
value: |
47+
## Before creating an issue make sure that:
48+
- This hasn't been [reported before](https://github.com/vuejs/pinia/issues).
49+
- The provided reproduction is a [minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) of the bug **with no external dependencies (e.g. vuetify)**

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 20 deletions
This file was deleted.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: "\U0001F680 New feature proposal"
2+
description: Suggest an idea for Pinia
3+
labels: ['feature request']
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for your interest in the project and taking the time to fill out this feature report!
9+
- type: textarea
10+
id: feature-description
11+
attributes:
12+
label: What problem is this solving
13+
description: 'A clear and concise description of what the problem is. Ex. when using the function X we cannot do Y.'
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: proposed-solution
18+
attributes:
19+
label: Proposed solution
20+
description: 'A clear and concise description of what you want to happen with an API proposal when applicable'
21+
validations:
22+
required: true
23+
- type: textarea
24+
id: alternative
25+
attributes:
26+
label: Describe alternatives you've considered
27+
description: A clear and concise description of any alternative solutions or features you've considered.

0 commit comments

Comments
 (0)