Skip to content

Commit 0b6236a

Browse files
authored
Convert from Markdown to Issues Forms (pterodactyl#3457)
1 parent c54ce99 commit 0b6236a

File tree

4 files changed

+179
-59
lines changed

4 files changed

+179
-59
lines changed

.github/ISSUE_TEMPLATE/---bug-report.md

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

.github/ISSUE_TEMPLATE/---feature-request.md

Lines changed: 0 additions & 17 deletions
This file was deleted.
Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
name: 🐛 Bug Report
2+
description: For reporting code or design bugs with the software. DO NOT REPORT APACHE/NGINX/PHP CONFIGURATION ISSUES.
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
DO NOT REPORT ISSUES CONFIGURING: SSL, PHP, APACHE, NGINX, YOUR MACHINE, SSH, SFTP, ETC. ON THIS GITHUB TRACKER.
8+
For assistance installing this software, as well as debugging issues with dependencies, please use our [Discord server](https://discord.gg/pterodactyl)
9+
You MUST complete all of the below information when reporting a bug, failure to do so will result in the closure of your issue. PLEASE stop spamming our tracker with "bugs" that are not related to this project.
10+
*To obtain logs for the panel and wings the below commands should help with the retrieval of them.*
11+
* **Panel:** `tail -n 100 /var/www/pterodactyl/storage/logs/laravel-$(date +%F).log | nc bin.ptdl.co 99`
12+
* **Wings:** `sudo wings diagnostics`
13+
14+
- type: markdown
15+
attributes:
16+
value: |
17+
**Background**"
18+
19+
- type: dropdown
20+
id: panel-or-wings
21+
attributes:
22+
label: Panel or Wings
23+
options:
24+
- "Panel"
25+
- "Wings"
26+
validations:
27+
required: true
28+
29+
- type: input
30+
id: panel-version
31+
attributes:
32+
label: Panel Version
33+
description: Version number of your Panel (latest is not a version)
34+
placeholder: 1.x.x
35+
validations:
36+
required: true
37+
38+
- type: input
39+
id: wings-version
40+
attributes:
41+
label: Wings Version
42+
description: Version number of your Wings (latest is not a version)
43+
placeholder: 1.x.x
44+
validations:
45+
required: true
46+
47+
- type: input
48+
id: panel-logs
49+
attributes:
50+
label: Panel Logs
51+
placeholder: "https://bin.ptdl.co/"
52+
validations:
53+
required: true
54+
55+
- type: input
56+
id: wings-logs
57+
attributes:
58+
label: Wings Logs
59+
placeholder: "https://ptero.co/"
60+
validations:
61+
required: true
62+
63+
- type: input
64+
id: server-os
65+
attributes:
66+
label: Server OS
67+
placeholder: "Ubuntu 20.04"
68+
validations:
69+
required: true
70+
71+
- type: input
72+
id: computer-os
73+
attributes:
74+
label: Your Computer's OS
75+
placeholder: "Windows"
76+
validations:
77+
required: true
78+
79+
- type: input
80+
id: browser
81+
attributes:
82+
label: Browser
83+
placeholder: "Google Chrome"
84+
validations:
85+
required: true
86+
87+
- type: input
88+
id: php-version
89+
attributes:
90+
label: PHP Version
91+
placeholder: "8.0.5"
92+
validations:
93+
required: true
94+
95+
- type: textarea
96+
id: docker-info
97+
attributes:
98+
label: Information regarding docker
99+
description: "The info returned from `docker info`"
100+
render: bash
101+
validations:
102+
required: true
103+
104+
- type: textarea
105+
id: kernel-info
106+
attributes:
107+
label: Information regarding docker
108+
description: "The info returned from `uname -a`"
109+
render: bash
110+
validations:
111+
required: true
112+
113+
- type: textarea
114+
id: actual-behavior
115+
attributes:
116+
label: Actual Behavior
117+
description: What actually happened instead
118+
placeholder: Server crashed with error X
119+
validations:
120+
required: true
121+
122+
- type: textarea
123+
id: expected-behavior
124+
attributes:
125+
label: Expected Behavior
126+
description: What did you expect to happen
127+
placeholder: Install the server, start it, play
128+
validations:
129+
required: true
130+
131+
- type: textarea
132+
id: reproduce-steps
133+
attributes:
134+
label: Steps To Reproduce
135+
description: Step by step what to do to cause the issue
136+
placeholder: |
137+
Step 1 Set version to latest
138+
Step 2 install
139+
Step 3 Receive error X or Y
140+
validations:
141+
required: true
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: 🚀 Feature Request
2+
description: Suggest an idea for this project
3+
body:
4+
- type: textarea
5+
id: feat-to-problem
6+
attributes:
7+
label: Is your feature request related to a problem?
8+
description: "A clear and concise description of what the problem is."
9+
render: bash
10+
validations:
11+
required: true
12+
13+
- type: textarea
14+
id: solution
15+
attributes:
16+
label: Describe the solution you'd like
17+
description: "A clear and concise description of what you want to happen."
18+
render: bash
19+
validations:
20+
required: true
21+
22+
- type: textarea
23+
id: alternatives
24+
attributes:
25+
label: Describe alternatives you've considered
26+
description: "A clear and concise description of any alternative solutions or features you've considered."
27+
render: bash
28+
validations:
29+
required: true
30+
31+
- type: textarea
32+
id: context
33+
attributes:
34+
label: Additional context
35+
description: "Add any other context or screenshots about the feature request here."
36+
render: bash
37+
validations:
38+
required: false

0 commit comments

Comments
 (0)