mirror of
https://github.com/parkervcp/eggs.git
synced 2024-11-22 12:12:53 +08:00
Improve issue template (#1364)
* ci(egg request): enable labels, remove wrong field and add issue URL * ci(bug report): Add notice to search existing issues
This commit is contained in:
parent
e381a4d1e9
commit
21dd478a35
32
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
32
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
@ -6,9 +6,11 @@ body:
|
|||||||
- type: markdown
|
- type: markdown
|
||||||
attributes:
|
attributes:
|
||||||
value: |
|
value: |
|
||||||
If you see any of the following, go to [Discord](https://discord.gg/pterodactyl) and report your error in a support channel.
|
If you see any of the following, go to [Discord](https://discord.gg/pterodactyl) and report your error in a support channel.
|
||||||
* `A fatal error was encountered while starting this server.`
|
* `A fatal error was encountered while starting this server.`
|
||||||
* `No server egg configuration could be located; aborting startup.`
|
* `No server egg configuration could be located; aborting startup.`
|
||||||
|
|
||||||
|
Make sure there are no existing bug reports by searching the [repository issues](https://github.com/parkervcp/eggs/issues?q=is%3Aopen+is%3Aissue+label%3ABug).
|
||||||
- type: input
|
- type: input
|
||||||
id: panel-version
|
id: panel-version
|
||||||
attributes:
|
attributes:
|
||||||
@ -24,7 +26,7 @@ body:
|
|||||||
description: Version number of your Wings (latest is not a version)
|
description: Version number of your Wings (latest is not a version)
|
||||||
placeholder: 1.x.x
|
placeholder: 1.x.x
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: input
|
- type: input
|
||||||
id: service
|
id: service
|
||||||
attributes:
|
attributes:
|
||||||
@ -32,18 +34,18 @@ body:
|
|||||||
description: Service you are experiencing issues with
|
description: Service you are experiencing issues with
|
||||||
placeholder: minecraft/factorio/etc
|
placeholder: minecraft/factorio/etc
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: dropdown
|
- type: dropdown
|
||||||
id: modified
|
id: modified
|
||||||
attributes:
|
attributes:
|
||||||
label: Modified
|
label: Modified
|
||||||
description: Did you add or change things, this includes startup configs/install scripts/variables
|
description: Did you add or change things, this includes startup configs/install scripts/variables
|
||||||
options:
|
options:
|
||||||
- Yes, I modified the egg (will provide details below)
|
- Yes, I modified the egg (will provide details below)
|
||||||
- No, I did not modify the egg
|
- No, I did not modify the egg
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: expected-behavior
|
id: expected-behavior
|
||||||
attributes:
|
attributes:
|
||||||
label: Expected Behavior
|
label: Expected Behavior
|
||||||
@ -51,7 +53,7 @@ body:
|
|||||||
placeholder: Install the server, start it, play
|
placeholder: Install the server, start it, play
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: actual-behavior
|
id: actual-behavior
|
||||||
attributes:
|
attributes:
|
||||||
label: Actual Behavior
|
label: Actual Behavior
|
||||||
@ -59,15 +61,15 @@ body:
|
|||||||
placeholder: Server crashed with error X
|
placeholder: Server crashed with error X
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: reproduce-steps
|
id: reproduce-steps
|
||||||
attributes:
|
attributes:
|
||||||
label: Steps To Reproduce
|
label: Steps To Reproduce
|
||||||
description: Step by step what to do to cause the issue
|
description: Step by step what to do to cause the issue
|
||||||
placeholder: |
|
placeholder: |
|
||||||
Step 1 Set version to latest
|
Step 1 Set version to latest
|
||||||
Step 2 install
|
Step 2 install
|
||||||
Step 3 Receive error X or Y
|
Step 3 Receive error X or Y
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
@ -75,4 +77,4 @@ body:
|
|||||||
attributes:
|
attributes:
|
||||||
label: Relevant log output
|
label: Relevant log output
|
||||||
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
|
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
|
||||||
render: shell
|
render: shell
|
||||||
|
15
.github/ISSUE_TEMPLATE/egg-request.yml
vendored
15
.github/ISSUE_TEMPLATE/egg-request.yml
vendored
@ -1,19 +1,12 @@
|
|||||||
name: 🥚 Egg Request
|
name: 🥚 Egg Request
|
||||||
description: Suggest a server to build an egg for
|
description: Suggest a server to build an egg for
|
||||||
title: "[Egg Request]: "
|
title: "[Egg Request]: "
|
||||||
|
labels: [Egg Request]
|
||||||
body:
|
body:
|
||||||
- type: markdown
|
- type: markdown
|
||||||
attributes:
|
attributes:
|
||||||
value: |
|
value: |
|
||||||
Make sure there are no existing egg requests by searching the repository issues. Please understand how Pterodactyl works when you are requesting an egg. (ie. docker-compose doesn't work for a pterodactyl server)
|
Make sure there are no existing egg requests by searching the [repository issues](https://github.com/parkervcp/eggs/issues?q=is%3Aissue+is%3Aopen+label%3A%22Egg+Request%22). Please understand how Pterodactyl works when you are requesting an egg. (ie. docker-compose doesn't work for a pterodactyl server)
|
||||||
- type: input
|
|
||||||
id: service
|
|
||||||
attributes:
|
|
||||||
label: Service
|
|
||||||
description: Service you are experiencing issues with
|
|
||||||
placeholder: minecraft/factorio/etc
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
- type: dropdown
|
- type: dropdown
|
||||||
id: expand
|
id: expand
|
||||||
attributes:
|
attributes:
|
||||||
@ -26,14 +19,14 @@ body:
|
|||||||
- type: input
|
- type: input
|
||||||
id: game-link
|
id: game-link
|
||||||
attributes:
|
attributes:
|
||||||
label: Link to game
|
label: Link to a game or software
|
||||||
placeholder: minecraft.net/factorio.com/etc
|
placeholder: minecraft.net/factorio.com/etc
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: input
|
- type: input
|
||||||
id: download-link
|
id: download-link
|
||||||
attributes:
|
attributes:
|
||||||
label: Links for server downloads
|
label: Links for the download
|
||||||
description: This needs to be an official link and not one that is hosted on some forum page or a personal Github page.
|
description: This needs to be an official link and not one that is hosted on some forum page or a personal Github page.
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
Loading…
Reference in New Issue
Block a user