Skip to content

Commit 79dae9c

Browse files
authored
Create questions-and-answers.yml
1 parent f786bf1 commit 79dae9c

File tree

1 file changed

+162
-0
lines changed

1 file changed

+162
-0
lines changed
Lines changed: 162 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,162 @@
1+
title: "Question: "
2+
labels: [ "question", ]
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
<!--- Logo and Header -->
8+
<div align="center">
9+
<picture>
10+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/Lennolium/swiftGuard/main/img/banner/banner_dark.png"
11+
width="500vw">
12+
<source media="(prefers-color-scheme: light)"
13+
srcset="https://raw.githubusercontent.com/Lennolium/swiftGuard/main/img/banner/banner_light.png"
14+
width="500vw">
15+
<img alt="swiftGuard banner" src="https://raw.githubusercontent.com/Lennolium/swiftGuard/main/img/banner/banner_light.png"
16+
width="500vw">
17+
</picture>
18+
</div>
19+
20+
<h2 align="center">Question Submit Form</h2>
21+
<div align="center">
22+
Provide the following information properly, which will help me to answer your question quickly.
23+
If you need further help with this form, please do not hesitate and contact me via <a href="mailto:swiftguard@lennolium.dev">email</a>.
24+
Also make sure to check the the discussion forum for similar questions before submitting this form to avoid duplicates.
25+
For <b>issues regarding the package</b>, please open a new issue in the <a href="https://github.com/Lennolium/swiftGuard/issues/new/choose">Issues tab</a>.
26+
<br>
27+
For all general questions, please use this form.
28+
<br>
29+
<br>
30+
31+
<a href="https://github.com/Lennolium/swiftGuard/discussions" >
32+
<img src="https://img.shields.io/github/discussions/Lennolium/swiftGuard?style=flat-square&color=deepskyblue" alt="discussions" >
33+
</a>
34+
35+
</div>
36+
<br>
37+
<br>
38+
39+
40+
- type: dropdown
41+
id: category
42+
attributes:
43+
label: Category
44+
description: About what do you have a question?
45+
options:
46+
- Installation
47+
- Features/Functionality
48+
- Usage
49+
- Planned Features
50+
- Development/Contributing
51+
- Other
52+
default: 0
53+
validations:
54+
required: true
55+
56+
- type: markdown
57+
attributes:
58+
value: |
59+
<br>
60+
61+
- type: textarea
62+
id: question
63+
attributes:
64+
label: Question
65+
description: Here you ask your specific question and provide detailed information. You can also attach screenshots and files here.
66+
placeholder: I have a question ...
67+
validations:
68+
required: true
69+
70+
- type: markdown
71+
attributes:
72+
value: |
73+
<br>
74+
75+
- type: input
76+
id: os
77+
attributes:
78+
label: Operating System
79+
description: Which operating system are you using? (e.g. Windows, macOS, Linux, Android, iOS, ...)"
80+
placeholder: Operating System name and version
81+
82+
- type: dropdown
83+
id: os
84+
attributes:
85+
label: Operating System
86+
description: Which operating system are you using? (e.g. Windows, macOS, Linux, Android, iOS, ...)"
87+
multiple: false
88+
options:
89+
- macOS
90+
- Linux (please specify distribution)
91+
- Windows
92+
- Other (please specify)
93+
default: 0
94+
95+
- type: markdown
96+
attributes:
97+
value: |
98+
<br>
99+
100+
- type: input
101+
id: os version
102+
attributes:
103+
label: Operating System Version
104+
description: "Which version of the operating system are you using? (e.g. macOS 12.0.1 / Monterey, Windows 11, Ubuntu 21.10, ...)"
105+
placeholder: Version number or name
106+
107+
- type: markdown
108+
attributes:
109+
value: |
110+
<br>
111+
112+
- type: dropdown
113+
id: list
114+
attributes:
115+
label: Installation Method
116+
description: "How did you install the application?"
117+
multiple: false
118+
options:
119+
- Release (GitHub)
120+
- From Source (GitHub)
121+
- Other (please specify)
122+
default: 0
123+
124+
- type: markdown
125+
attributes:
126+
value: |
127+
<br>
128+
129+
- type: input
130+
id: app-version
131+
attributes:
132+
label: Application Version
133+
description: "What version of the application are you running? Click the `Question Mark` icon or check logs at `~/Library/Logs/dev.lennolium.swiftguard/swiftguard.log`."
134+
placeholder: Latest, 0.1.0, 0.0.1, Legacy, ...
135+
136+
- type: markdown
137+
attributes:
138+
value: |
139+
<br>
140+
141+
- type: textarea
142+
id: other-info
143+
attributes:
144+
label: Further Information
145+
description: Feel free to add any further information maybe needed here.
146+
render: shell
147+
148+
- type: markdown
149+
attributes:
150+
value: |
151+
<br>
152+
153+
- type: checkboxes
154+
id: terms
155+
attributes:
156+
label: Agreements
157+
description: "By submitting this question, you acknowledge that you have read, understood, and agreed to the following terms:"
158+
options:
159+
- label: I have read and agree to follow this project's [Code of Conduct](https://github.com/Lennolium/swiftGuard/blob/master/.github/CODE_OF_CONDUCT.md).
160+
required: true
161+
- label: I confirm that I have searched the [Discussion Tab](https://github.com/Lennolium/swiftGuard/discussions) for similar questions and this is __not__ a duplicate.
162+
required: true

0 commit comments

Comments
 (0)