Skip to content
This repository was archived by the owner on Apr 22, 2024. It is now read-only.

Commit 88f02a8

Browse files
committed
refactor: added github issues template
1 parent 8d2a1f7 commit 88f02a8

File tree

5 files changed

+183
-0
lines changed

5 files changed

+183
-0
lines changed
Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
name: "🐛 Bug report"
2+
description: Report errors or unexpected behavior
3+
labels:
4+
- bug
5+
- triage-needed
6+
title: '[Bug]: '
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Thanks for taking the time to fill out this bug report, please make sure to [search for existing issues](https://github.com/vuestorefront/redis-driver/issues) before filing a new one!
12+
- type: textarea
13+
id: whattoexpect
14+
attributes:
15+
label: Expected Behavior
16+
placeholder: What were you expecting?
17+
validations:
18+
required: false
19+
- type: textarea
20+
id: whathappened
21+
attributes:
22+
label: Actual Behavior
23+
placeholder: What happened instead??
24+
validations:
25+
required: true
26+
- type: textarea
27+
id: solution
28+
attributes:
29+
label: Possible Solution
30+
description: Also, if possible provide the information on how to implement the solution.
31+
placeholder: Do you have any possible solution or fix for this bug?
32+
validations:
33+
required: false
34+
- type: textarea
35+
id: reproduce
36+
attributes:
37+
label: Steps to reproduce
38+
description: Please provide detailed instructions on how to reproduce.
39+
placeholder: How we can reproduce this bug?
40+
validations:
41+
required: false
42+
- type: input
43+
attributes:
44+
label: What version of Magento 2 integration are you using?
45+
description: 'For example: 1.0.0'
46+
validations:
47+
required: true
48+
- type: input
49+
attributes:
50+
label: What version of Node.js are you using?
51+
description: 'For example: 12.0.0'
52+
validations:
53+
required: true
54+
- type: input
55+
attributes:
56+
label: What browser (and version) are you using?
57+
description: 'For example: Chrome, Safari'
58+
validations:
59+
required: true
60+
- type: input
61+
attributes:
62+
label: What operating system (and version) are you using?
63+
description: 'For example: macOS, Windows'
64+
validations:
65+
required: true
66+
- type: textarea
67+
id: logs
68+
attributes:
69+
label: Relevant log output
70+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
71+
render: shell
72+
- type: checkboxes
73+
id: terms
74+
attributes:
75+
label: Code of Conduct
76+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/vuestorefront/redis-driver/blob/master/CODE_OF_CONDUCT.md)
77+
options:
78+
- label: I agree to follow this project's Code of Conduct
79+
required: true
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: "📚 Documentation Issue"
2+
description: |
3+
Report issues in our documentation
4+
labels:
5+
- documentation
6+
- triage-needed
7+
body:
8+
- type: textarea
9+
attributes:
10+
label: Provide a description of requested docs changes
11+
placeholder: Briefly describe which document needs to be corrected.
12+
validations:
13+
required: true
14+
- type: checkboxes
15+
id: fixthebug
16+
attributes:
17+
label: Able to fix / change the documentation?
18+
description: Can you handle this change and create a Pull Request?
19+
options:
20+
- label: 'Yes'
21+
required: false
22+
- label: 'No'
23+
required: false
24+
- type: checkboxes
25+
id: terms
26+
attributes:
27+
label: Code of Conduct
28+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/vuestorefront/redis-driver/blob/master/CODE_OF_CONDUCT.md)
29+
options:
30+
- label: I agree to follow this project's Code of Conduct
31+
required: true
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: "🚀 Feature Request"
2+
description: Sugest a new feature request or improvement on the project
3+
title: '[Feature]: '
4+
labels:
5+
- feature
6+
- enhancement
7+
- triage-needed
8+
9+
body:
10+
- type: markdown
11+
attributes:
12+
value: |
13+
Please, provide as many information, and knowledge so the feature can be correctly designed and developed.
14+
- type: textarea
15+
id: suggestion
16+
attributes:
17+
label: How the project can be improved?
18+
description: What is the motivation for adding / enhancing this feature? Can you describe a concrete use case for this feature or why one of current ones should be enhanced.
19+
placeholder: Describe the motivation or the concrete use case
20+
validations:
21+
required: true
22+
- type: textarea
23+
id: acceptcriterea
24+
attributes:
25+
label: What are the acceptance criteria?
26+
description: List the acceptance criteria for this task in a form of a list.
27+
value: '- [ ]'
28+
- type: textarea
29+
id: additionalinfo
30+
attributes:
31+
label: Additional information
32+
description: If you think that any additional information would be useful please provide them here.
33+
- type: checkboxes
34+
id: terms
35+
attributes:
36+
label: Code of Conduct
37+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/vuestorefront/redis-driver/blob/master/CODE_OF_CONDUCT.md)
38+
options:
39+
- label: I agree to follow this project's Code of Conduct
40+
required: true
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: "❓ Question / Basic Issue"
2+
description: |
3+
Do you have a question on the implementation or a basic issue
4+
labels:
5+
- triage-needed
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: If you are not sure how something works or want discuss something just describe your doubts.
10+
- type: textarea
11+
attributes:
12+
label: What is your question / Please describe your issue
13+
validations:
14+
required: true
15+
- type: input
16+
attributes:
17+
label: What version of Magento 2 Integration are you using?
18+
description: 'For example: 1.0.0'
19+
validations:
20+
required: true
21+
- type: checkboxes
22+
id: terms
23+
attributes:
24+
label: Code of Conduct
25+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/vuestorefront/vue-storefront/blob/master/CODE_OF_CONDUCT.md)
26+
options:
27+
- label: I agree to follow this project's Code of Conduct
28+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Discord Chat
4+
url: https://discord.vuestorefront.io/
5+
about: Ask questions and discuss with other Vue Storefront users in real time.

0 commit comments

Comments
 (0)