Skip to content

Commit

Permalink
Adding Exception Report Issue Configuration. Updating Bug Report to u…
Browse files Browse the repository at this point in the history
…se the correct template.
  • Loading branch information
ItsEasyActually committed Jan 31, 2025
1 parent a24c5b7 commit fe3f101
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE/03-exception-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: "Exception Report"
description: "Report a crash from the Mod Manager. DO NOT report game crashes."
title: "[Exception Report]: "
labels: ["exception report", "bug"]
body:
- type: checkboxes
attributes:
label: Report Verification
description: Before submitting your Exception Report, please check the Issues on the repo for any similar reports. If you find one, please add your report to that issue.
options:
- label: I have checked and verified there are no similar reports.
required: true
- type: textarea
attributes:
label: Exception Report
description: Please paste your Exception Report here. Include any additional crash related files here.
validations:
required: true
- type: textarea
attributes:
label: Reproduction Steps
description: Please provide the steps you were taking when the bug occurred.
value: |
1.
2.
3.
...
validations:
required: true
- type: textarea
attributes:
label: Additional Information
description: Please provide any additional information you believe may pertain to this bug. You can provide screenshots, videos, and any potential logs by clicking this area to highlight it, then dragging the file(s) in.
validations:
required: false
2 changes: 1 addition & 1 deletion SA-Mod-Manager/UI/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1235,7 +1235,7 @@ private void OpenLoaderIssue()
private void OpenManagerIssue()
{
string url = "https://github.com/X-Hax/SA-Mod-Manager/issues/new";
url += "?template=bug_report.md"; // Add Template
url += "?template=01-bug-report.yml"; // Add Configuration.

var ps = new ProcessStartInfo(url)
{
Expand Down

0 comments on commit fe3f101

Please sign in to comment.