Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
Merge branch 'stable' into github-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
AzaleeX authored Dec 6, 2023
2 parents ff65014 + 45a86a8 commit e091de2
Show file tree
Hide file tree
Showing 5 changed files with 233 additions and 5 deletions.
49 changes: 49 additions & 0 deletions .github/ISSUE_TEMPLATE/api-change-request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
name: "📦 API change request"
about: "Suggest a change, addition, or removal to the plugin API"
title: ""
labels:
- 'Type: API'
- 'Status: Unconfirmed'

body:
- type: markdown
attributes:
value: |
**Thank you :heart: for taking the time to fill in this API change request report!**
Please check if there is an [existing issue](https://github.com/SymplyX/Symply/pulls) for your proposed change.
We are also happy to accept contributions from our users. For more details, refer [here](https://github.com/SymplyX/Symply/blob/stable/CONTRIBUTING.md).
- type: textarea
attributes:
label: "Description"
description: |
Provide a clear, concise description of the addition or modification you are proposing.
validations:
required: true

- type: textarea
attributes:
label: "Justification"
description: |
Describe the solution you'd like. Provide a clear and concise description of what you want to happen.
validations:
required: true

- type: textarea
attributes:
label: "Change List"
description: |
List all changes in a clear format.
validations:
required: false

- type: checkboxes
attributes:
label: "Prior Research"
description: "Have you performed prior research to avoid duplicates?"
options:
- label: "I have performed prior research"
required: true
---
95 changes: 95 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
---
name: "🧰 Bug Report"
about: "Have you found a bug ? Then report it to us!"
title: ''
labels:
- 'Type: Bug'
- 'Status: Unconfirmed'

body:
- type: markdown
attributes:
value: |
**Thank you :heart: for taking the time to fill in this bug report!**
Please check if there is a problem [already exists](https://github.com/SymplyX/Symply/pulls) for your change.
We are also happy to accept contributions from our users. For more details, see [here](https://github.com/SymplyX/Symply/blob/stable/CONTRIBUTING.md).
- type: textarea
attributes:
label: "What actually happened?"
description: |
We're trying to find out how this happened, so please give us as much information as possible.
Tip: The more information we have, the faster your request will be processed!
validations:
required: true

- type: textarea
attributes:
label: "Steps to reproduce"
description: "How can we reproduce your problem simply?"
placeholder: |
1. Start server...
2. Break block...
validations:
required: true

- type: textarea
attributes:
label: "Environment"
description: |
Examples:
- **OS**: Ubuntu 20.04
- **Symply**: latest/dev
- **Pocketmine-MP**: latest/dev
- **Game version**: Android/iOS/Win10/Xbox/PS4/Switch
value: |
- OS:
- Symply:
- Pocketmine-MP:
- Game version:
render: markdown
validations:
required: true

- type: dropdown
attributes:
label: "Do you use Symply modules?"
multiple: false
options:
- Yes
- No
default: 0

- type: textarea
attributes:
label: "List of active Symply modules"
description: "A list is required. You can find the active modules in the symply.yml config file."
placeholder: |
1. Rank
2. WaterdogPe Support
validations:
required: false

- type: textarea
attributes:
label: "Do you have the crashdump file to send us?"
description: "If you have nothing, leave the box empty."
validations:
required: false

- type: textarea
attributes:
label: "Proof Image?"
description: "If you have any images to share with us, simply enter them in the image box."
validations:
required: false

- type: checkboxes
attributes:
label: "Is there an existing issue for this?"
description: "Please search to see if an issue already exists for the bug you encountered."
options:
- label: "I have searched the existing issues"
required: true
---
5 changes: 0 additions & 5 deletions .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

58 changes: 58 additions & 0 deletions .github/ISSUE_TEMPLATE/crash.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
---
name: 🧨 Crash
about: Report a crash in PocketMine-MP (not plugins)
title: Server crashed
labels:
- 'Status: Unconfirmed'

body:
- type: markdown
attributes:
value: |
<!-- Welcome! Please report the details of the crash below. -->
<!-- Provide as much information as possible for better assistance. -->
- type: textarea
attributes:
label: "Description"
description: |
Describe the crash incident in detail.
validations:
required: true

- type: textarea
attributes:
label: "Steps to Reproduce"
description: |
Provide steps to reproduce the crash, if possible.
validations:
required: false

- type: textarea
attributes:
label: "Server Environment"
description: |
Provide details about the server environment:
- PocketMine-MP version
- Operating system
- Plugins (if relevant)
- Any additional context
validations:
required: true

- type: textarea
attributes:
label: "Crashdump File"
description: |
If available, provide the crashdump file for analysis.
validations:
required: false

- type: textarea
attributes:
label: "Additional Information"
description: |
Add any additional information that might be relevant.
validations:
required: false
---
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/question.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
name: 🗣️ Question
about: Ask your question
title: ""
labels:
- 'Type: Question'
assignees: ''

body:
- type: markdown
attributes:
value: |
<!-- Welcome! Please ask your question below. -->
<!-- Kindly provide as many details as possible for an accurate response. -->
<!-- You can also check previous questions to avoid duplicates. -->
- type: textarea
attributes:
label: "Your Question"
description: "Please provide as many details as possible."
validations:
required: true

- type: checkboxes
attributes:
label: "Prior Research"
description: "Have you performed prior research to avoid duplicates?"
options:
- label: "I have performed prior research"
required: true
---

0 comments on commit e091de2

Please sign in to comment.