Skip to content

Commit 8e9a119

Browse files
authored
chore: use github issue forms (#2673)
1 parent 016cea9 commit 8e9a119

File tree

4 files changed

+83
-52
lines changed

4 files changed

+83
-52
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: Bug report
2+
description: Create a report to help us improve
3+
labels: ['bug']
4+
title: 'Bug: '
5+
type: 'Bug'
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for your interest in the project! We appreciate bugs filed and PRs submitted!
11+
12+
Please use a template below to create a minimal reproduction
13+
👉 https://stackblitz.com/github/vuejs/create-vue-templates/tree/main/typescript-vitest?file=src%2Fcomponents%2F__tests__%2FHelloWorld.spec.ts
14+
15+
For test-utils v1 and Vue v2, please report at:
16+
👉 https://github.com/vuejs/vue-test-utils
17+
- type: textarea
18+
id: description
19+
attributes:
20+
label: Describe the bug
21+
description: A clear and concise description of what the bug is.
22+
validations:
23+
required: true
24+
- type: input
25+
id: reproduction
26+
attributes:
27+
label: Reproduction
28+
placeholder: https://stackblitz.com/...
29+
validations:
30+
required: true
31+
- type: textarea
32+
id: expected-behavior
33+
attributes:
34+
label: Expected behavior
35+
description: A clear and concise description of what you expected to happen.
36+
validations:
37+
required: true
38+
- type: textarea
39+
id: environment
40+
attributes:
41+
label: Environment
42+
placeholder: Environment
43+
description: Output of `npx envinfo --system --npmPackages vue,@vue/test-utils,vitest,jest`.
44+
validations:
45+
required: true
46+
- type: textarea
47+
id: additional-context
48+
attributes:
49+
label: Additional context
50+
description: Add any other context about the problem here.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 29 deletions
This file was deleted.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Feature request
2+
description: Suggest an idea for this project
3+
type: Feature
4+
title: 'Feature request: '
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for your interest in the project – we appreciate your ideas! Please bear in mind that maintainers might need to request additional information or context before adding a new feature. They need to think about edge cases and how this feature fits in the codebase, so a feature request might take some time to move forward.
10+
- type: textarea
11+
id: feature-description
12+
attributes:
13+
label: Is your feature request related to a problem? Please describe.
14+
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: feature-solution
19+
attributes:
20+
label: Describe the solution you'd like
21+
description: A clear and concise description of what you want to happen.
22+
validations:
23+
required: true
24+
- type: textarea
25+
id: feature-alternatives
26+
attributes:
27+
label: Describe alternatives you've considered
28+
description: A clear and concise description of any alternative solutions or features you've considered.
29+
- type: textarea
30+
id: feature-additional-context
31+
attributes:
32+
label: Additional context
33+
description: Add any other context or screenshots about the feature request here.

.github/ISSUE_TEMPLATE/feature_request.md

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

0 commit comments

Comments
 (0)