Skip to content

Commit 0eed2b4

Browse files
committed
chore: add issue templates
1 parent 8e31127 commit 0eed2b4

3 files changed

Lines changed: 152 additions & 0 deletions

File tree

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
name: Bug report
2+
description: Report something that is not working correctly
3+
title: '[Bug]: '
4+
labels: type:bug
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: >-
9+
Thank you for taking the time to file this issue to report a bug. Before doing so, please make sure you have completed the following preparatory steps:
10+
11+
- I’ve already gone to [GitHub Actions](https://github.com/WhatDamon/PerformTracker-Mod/actions/workflows/build.yml) to download and use the latest automated build version, but the bug is still there.
12+
- I have searched and confirmed that there are no duplicate issues.
13+
- I understand that this issue will be closed if the information is incomplete.
14+
15+
If you have already completed the necessary preparations, please fill out the form.
16+
- type: input
17+
id: minecraft-version
18+
attributes:
19+
label: Minecraft Version
20+
description:
21+
Please provide the Minecraft version.
22+
If you can provide logs, this field is optional.
23+
placeholder: 1.21.11
24+
- type: input
25+
id: fabric-version
26+
attributes:
27+
label: Fabric Loader Version
28+
description: >-
29+
Please provide the Fabric Loader version.
30+
If you can provide logs, this field is optional.
31+
If you are loading this mod using the Sinytra Connector in another mod loader, please note this separately.
32+
placeholder: 0.18.0
33+
- type: input
34+
id: fabric-api-version
35+
attributes:
36+
label: Fabric API Version
37+
description: >-
38+
Please provide the Fabric API version.
39+
If you can provide logs, this field is optional.
40+
If you are using the Sinytra Connector to load this mod in another mod loader, please provide the Forgified Fabric API version.
41+
placeholder: 0.141.3+1.21.11
42+
- type: input
43+
id: performtracker-version
44+
attributes:
45+
label: PerformTracker Version
46+
description: >-
47+
Please provide the PerformTracker version.
48+
If you can provide logs, this field is optional.
49+
placeholder: 0.1.0
50+
- type: dropdown
51+
id: client-or-server
52+
attributes:
53+
label: Client or Server
54+
description: On which end of the client-server architecture does this issue occur?
55+
multiple: true
56+
options:
57+
- Client
58+
- Delicated Server
59+
validations:
60+
required: true
61+
- type: textarea
62+
id: description
63+
attributes:
64+
label: Bug Description
65+
description: A clear description of the bug.
66+
placeholder: Describe the bug here...
67+
validations:
68+
required: true
69+
- type: textarea
70+
id: step
71+
attributes:
72+
label: Steps to Reproduce
73+
description: >-
74+
How to reproduce the bug?
75+
If you can provide logs, this field is optional.
76+
placeholder: >-
77+
1. Go to '...'
78+
2. Click on '...'
79+
3. See error
80+
- type: textarea
81+
id: attachments
82+
attributes:
83+
label: Attachments
84+
description: For example, game logs, crash reports, etc.
85+
placeholder: Drag the log to here directly.
86+
- type: checkboxes
87+
id: checklist
88+
attributes:
89+
label: Checklist
90+
options:
91+
- label: Did you load this mod via the Sinytra Connector?
92+
required: false
93+
- label: >-
94+
I confirm that the above information is accurate and agree to answer any questions others may have regarding this issue.
95+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Others
4+
url: https://github.com/WhatDamon/PerformTracker/discussions/new/choose
5+
about: Report other problems in Discussions.
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: Feature Request
2+
description: Suggest a new feature or improvement
3+
title: '[Enhancement]: '
4+
labels: type:enhancement
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to suggest a new feature! Before doing so, please make sure you have completed the following preparatory steps:
10+
11+
- I have searched and confirmed that there are no duplicate issues.
12+
- I understand that this issue will be closed if the information is incomplete.
13+
14+
If you have already completed the necessary preparations, please fill out the form.
15+
- type: textarea
16+
id: summary
17+
attributes:
18+
label: Feature Summary
19+
description: A brief summary of the feature
20+
placeholder: A short summary of the feature...
21+
validations:
22+
required: true
23+
24+
- type: textarea
25+
id: motivation
26+
attributes:
27+
label: Motivation
28+
description: Why would this feature be useful?
29+
placeholder: Explain the use case and motivation...
30+
validations:
31+
required: true
32+
33+
- type: textarea
34+
id: description
35+
attributes:
36+
label: Detailed Description
37+
description: Describe the feature in detail
38+
placeholder: Describe the feature in detail...
39+
40+
- type: textarea
41+
id: alternatives
42+
attributes:
43+
label: Alternatives Considered
44+
description: Any alternative approaches you've considered
45+
placeholder: Describe alternative solutions...
46+
47+
- type: textarea
48+
id: additional
49+
attributes:
50+
label: Additional Context
51+
description: Any other context about the feature request
52+
placeholder: Add any other context here...

0 commit comments

Comments
 (0)