mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-09-21 21:37:06 +00:00
* docs: add a pull request template * Loosely based on the template of vitejs * docs: add bug report issue template * docs: link GitHub discussions in contributing.md
57 lines
2.3 KiB
YAML
57 lines
2.3 KiB
YAML
name: "🐞 Bug report"
|
|
description: "File a bug report."
|
|
title: "[Bug]: "
|
|
labels: [ bug ]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thanks for taking the time to report a bug!
|
|
- type: textarea
|
|
id: bug-description
|
|
attributes:
|
|
label: Describe the bug
|
|
description: A clear and concise description of what the bug is.
|
|
placeholder: I am doing ... What I expect is ... What actually happening is ...
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: reproduction-steps
|
|
attributes:
|
|
label: Steps to reproduce the issue
|
|
description: |
|
|
Please include a guide on how to reproduce the issue.
|
|
Without being able to reproduce it, it most likely cannot be fixed.
|
|
placeholder: e.g. compile the attached mod, load the attached asset file, use a specific snippet in a zone file, ...
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: oat-version
|
|
attributes:
|
|
label: OpenAssetTools version
|
|
description: The version of OpenAssetTools you encountered the bug with. Can be checked with the `--version` flag. E.g. `./Linker --version`
|
|
placeholder: v0.x.x
|
|
- type: upload
|
|
id: files
|
|
attributes:
|
|
label: Upload relevant files if any
|
|
description: |
|
|
Drag and drop any relevant files (like asset files to reproduce the issue) if there are any.
|
|
Do not upload any copyrighted material like original assets of the game.
|
|
- type: textarea
|
|
attributes:
|
|
label: Additional information
|
|
description: Any additional information regarding the issue you might want to share
|
|
- type: checkboxes
|
|
id: checkboxes
|
|
attributes:
|
|
label: Validations
|
|
description: Before submitting the issue, please make sure you do the following
|
|
options:
|
|
- label: Read the [Contributing Guidelines](https://github.com/Laupetin/OpenAssetTools/blob/main/CONTRIBUTING.md).
|
|
required: true
|
|
- label: Check that there isn't [already an issue](https://github.com/Laupetin/OpenAssetTools/issues) that reports the same bug to avoid creating a duplicate.
|
|
required: true
|
|
- label: Make sure this is an OpenAssetTools issue and not a bug in the game, a game client you are using or another third party tool.
|
|
required: true
|