Skip to content

Commit b4e22e7

Browse files
authored
Merge pull request #151 from dnth/dnth/add-issue-template
Add Issues Template
2 parents 02cdf66 + 4c099a8 commit b4e22e7

File tree

3 files changed

+130
-0
lines changed

3 files changed

+130
-0
lines changed
Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
name: Bug Report
2+
description: File a bug report
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
- type: textarea
11+
id: what-happened
12+
attributes:
13+
label: What happened?
14+
placeholder: Tell us what you see!
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: what-expected
19+
attributes:
20+
label: What did you expect to see?
21+
placeholder: Tell us what you expect!
22+
validations:
23+
required: true
24+
- type: input
25+
id: fastdup-version
26+
attributes:
27+
label: What version of fastdup were you runnning on?
28+
placeholder: ex. 0.918
29+
validations:
30+
required: true
31+
- type: dropdown
32+
id: python-version
33+
attributes:
34+
label: What version of Python were you running on?
35+
multiple: true
36+
options:
37+
- Python 3.10
38+
- Python 3.9
39+
- Python 3.8
40+
- Python 3.7
41+
- Other
42+
validations:
43+
required: true
44+
- type: input
45+
id: os-version
46+
attributes:
47+
label: Operating System
48+
description: What operating system and version were you runnning on?
49+
placeholder: ex. Ubuntu 22.04 LTS / macOS Ventura 13.3.1 (M1) / Windows 11
50+
validations:
51+
required: true
52+
- type: textarea
53+
id: reproduce
54+
attributes:
55+
label: Reproduction steps
56+
description: "How do you trigger this bug? Please walk us through it step by step."
57+
placeholder: |
58+
1. Go to '...'
59+
2. Click on '....'
60+
3. Scroll down to '....'
61+
4. See error '...'
62+
validations:
63+
required: false
64+
- type: textarea
65+
id: logs
66+
attributes:
67+
label: Relevant log output
68+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
69+
render: shell
70+
- type: textarea
71+
id: screenshot
72+
attributes:
73+
label: Attach a screenshot [Optional]
74+
validations:
75+
required: true
76+
- type: input
77+
id: contact
78+
attributes:
79+
label: Contact Details [Optional]
80+
description: How can we get in touch with you if we need more info?
81+
placeholder: ex. [email protected]
82+
validations:
83+
required: true

.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: true
2+
contact_links:
3+
- name: Discussion Forum
4+
url: https://visual-layer.readme.io/discuss
5+
about: Ask questions and discuss.
6+
- name: Slack Channel
7+
url: https://visualdatabase.slack.com/join/shared_invite/zt-19jaydbjn-lNDEDkgvSI1QwbTXSY6dlA#/shared-invite/email
8+
about: Chat with us.
9+
- name: Documentation Page
10+
url: https://visual-layer.readme.io/
11+
about: Read the docs.
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Feature Request
2+
description: Suggest a new feature for the project
3+
title: "[Feature Request]: "
4+
labels: ["feature-request"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for suggesting a new feature for our project! Please fill out the following information so we can better understand your request.
10+
- type: input
11+
id: feature-name
12+
attributes:
13+
label: Feature Name
14+
description: What do you want to call this feature?
15+
placeholder: ex. Dark Mode
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: feature-description
20+
attributes:
21+
label: Feature Description
22+
description: Please describe the new feature in as much detail as possible.
23+
placeholder: |
24+
What does the feature do?
25+
Why do you think it's important?
26+
How will it benefit users?
27+
validations:
28+
required: true
29+
- type: input
30+
id: contact-info
31+
attributes:
32+
label: Contact Information [Optional]
33+
description: How can we get in touch with you if we have questions or need more information?
34+
placeholder: ex. [email protected]
35+
validations:
36+
required: false

0 commit comments

Comments
 (0)