diff options
author | BrickPi <49528459+BrickPi@users.noreply.github.com> | 2024-11-20 01:25:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-20 01:25:18 +0100 |
commit | 71cca984366902635d6c1cdb643b635ce370acdb (patch) | |
tree | d3bad6e6e2aad885c9d14f47054af3d0ec51dd28 /.github/ISSUE_TEMPLATE/1-bug-report.yml | |
parent | 09dc5f0f8cfb511d24431e2921a42f2026f6f106 (diff) | |
parent | e2e4006b8785e63564ac8b7bdc2ccc38a02b01e5 (diff) |
Merge pull request #203 from Spartan322/add/issue-templates
Add issue templates
Diffstat (limited to '.github/ISSUE_TEMPLATE/1-bug-report.yml')
-rw-r--r-- | .github/ISSUE_TEMPLATE/1-bug-report.yml | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/1-bug-report.yml b/.github/ISSUE_TEMPLATE/1-bug-report.yml new file mode 100644 index 0000000..ed65db1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/1-bug-report.yml @@ -0,0 +1,78 @@ +name: Bug Report +description: "File a bug report. NOTE: Not for reporting distinctions from Victoria II." +labels: ["bug", "needs triage"] +body: + - type: markdown + attributes: + value: | + Thank you for filling out this bug report! + + When reporting a bug, please follow the guidelines in this template. This helps us quickly identify the problem you're having. + - If this report is about a feature or behavior in Victoria II that is missing or working incorrectly in OpenVic, please report a [Victoria II discrepency](https://github.com/OpenVicProject/OpenVic/issues/new?assignees=&labels=&projects=&template=2-victoria-2-discrepency.yml) instead. + - Write a descriptive issue title above. + - **Always open *one* issue for *one* bug**. If you notice several bugs, make sure to create one new issue for each of them. + - Verify that you are using either the latest release or the latest commit. It is preferred that you check if your issue is reproducible in the latest commit - it may already have been fixed! + - If you're playing with custom source modifications, please test if your bug is reproducible in the latest official build of OpenVic before opening an issue here. + + - type: checkboxes + attributes: + label: Duplicate Issue? + description: "Search [open](https://github.com/OpenVicProject/OpenVic/issues) and [closed](https://github.com/OpenVicProject/OpenVic/issues?q=is%3Aissue+is%3Aclosed) issues to ensure it has not already been reported. If you don't find a relevant match or if you're not sure, don't hesitate to **open a new issue**. Contributors will handle it from there if it's a duplicate." + options: + - label: I have checked for an existing bug report. + required: true + + - type: textarea + id: game-versions + attributes: + label: Game & Version Info + description: | + Enter the OpenVic version and commit you found the bug on in this box. You can find and copy this by clicking on the "Game Info" button in the bottom left corner of the OpenVic main menu. If you've found this bug to be reproducible on multiple versions, list all of those versions here. + placeholder: | + - Found in: <v0.02_Mappa_Mundi> (c65b2a795fd35e81f7a1906d07d15c47cd94cf9c). + - Not reproducible in: <v0.01_Primum_Mobile> (1980012045ea4c6b314d6d12a796eda23ae8d7fa). + validations: + required: true + + - type: textarea + id: modlist + attributes: + label: Mods or Extensions used + description: | + If you used any mods or extensions, please list them here with the version and a link to each mod/extension. + + - type: textarea + id: bug-description + attributes: + label: Issue Description + description: | + Describe your issue briefly. What doesn't work, and how do you expect it to work instead? + You can include images or videos with drag and drop. + validations: + required: true + + - type: textarea + id: reproduction-steps + attributes: + label: Steps to Reproduce + description: | + List of steps that reproduces the issue. Having reproducible issues is a prerequisite for contributors to be able to solve them. + validations: + required: true + + - type: textarea + id: logs + attributes: + 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. + render: shell + + - type: checkboxes + id: os + attributes: + label: "Operating System" + description: "Select the Operating System you found the bug under. If you've tested multiple and reproduced the bug, you can select more than one." + options: + - label: Windows 11 + - label: macOS + - label: Linux |