Skip to content

Commit cf4cff4

Browse files
committed
chore: forms for github
1 parent 4d53954 commit cf4cff4

File tree

6 files changed

+88
-52
lines changed

6 files changed

+88
-52
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 VueFire
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 with minimal dependencies (avoid testing, linting, and other unrelated dependencies). A failing unit test is even better! Otherwise provide as much information as possible to reproduce the problem. 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/vuefire/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, pinia)**

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Question
4+
url: https://github.com/vuejs/vuefire/discussions/new?category=Q-A
5+
about: Ask a question or discuss about VueFire
6+
- name: Ideas
7+
url: https://github.com/vuejs/vuefire/discussions/new?category=Ideas
8+
about: Start a discussion to improve VueFire
9+
- name: GitHub Sponsors
10+
url: https://github.com/sponsors/posva
11+
about: Like this project? Please consider supporting the author.

.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 VueFire
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.

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
node-version: 16
2929

30-
- uses: pnpm/action-setup@v2.2.2
30+
- uses: pnpm/action-setup@v2
3131
with:
3232
version: 7
3333
run_install: false

0 commit comments

Comments
 (0)