Skip to content

Commit 5a42891

Browse files
committed
add: github issue templates + build fix
1 parent 987cd10 commit 5a42891

File tree

3 files changed

+106
-1
lines changed

3 files changed

+106
-1
lines changed
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
name: Bug Report
2+
description: Create a report to help us improve LumaHunt.
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
- type: input
11+
id: version
12+
attributes:
13+
label: LumaHunt Version
14+
description: What version of LumaHunt are you using?
15+
placeholder: e.g. 1.0.0
16+
validations:
17+
required: true
18+
- type: input
19+
id: mc_version
20+
attributes:
21+
label: Minecraft Version
22+
placeholder: e.g. 1.20.1
23+
validations:
24+
required: true
25+
- type: input
26+
id: loader
27+
attributes:
28+
label: Mod Loader
29+
placeholder: Fabric / Quilt
30+
validations:
31+
required: true
32+
- type: textarea
33+
id: description
34+
attributes:
35+
label: Bug Description
36+
description: A clear and concise description of what the bug is.
37+
validations:
38+
required: true
39+
- type: textarea
40+
id: steps
41+
attributes:
42+
label: Steps to Reproduce
43+
description: Steps to reproduce the behavior.
44+
placeholder: |
45+
1. Go to '...'
46+
2. Click on '....'
47+
3. Scroll down to '....'
48+
4. See error
49+
validations:
50+
required: true
51+
- type: textarea
52+
id: expected
53+
attributes:
54+
label: Expected Behavior
55+
description: A clear and concise description of what you expected to happen.
56+
validations:
57+
required: true
58+
- type: textarea
59+
id: screenshots
60+
attributes:
61+
label: Screenshots
62+
description: If applicable, add screenshots to help explain your problem.
63+
validations:
64+
required: false
65+
- type: textarea
66+
id: logs
67+
attributes:
68+
label: Logs / Crash Report
69+
description: Please paste any relevant logs or huge stack traces here or link to a gist.
70+
render: shell
71+
validations:
72+
required: false
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Feature Request
2+
description: A suggestion for a new feature or improvement.
3+
title: "[Feature]: "
4+
labels: ["enhancement"]
5+
body:
6+
- type: textarea
7+
id: problem
8+
attributes:
9+
label: Is your feature request related to a problem? Please describe.
10+
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
11+
validations:
12+
required: true
13+
- type: textarea
14+
id: solution
15+
attributes:
16+
label: Describe the solution you'd like
17+
description: A clear and concise description of what you want to happen.
18+
validations:
19+
required: true
20+
- type: textarea
21+
id: alternatives
22+
attributes:
23+
label: Describe alternatives you've considered
24+
description: A clear and concise description of any alternative solutions or features you've considered.
25+
validations:
26+
required: false
27+
- type: textarea
28+
id: additional
29+
attributes:
30+
label: Additional Context
31+
description: Add any other context or screenshots about the feature request here.
32+
validations:
33+
required: false

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: make gradle wrapper executable
1818
run: chmod +x ./gradlew
1919
- name: build
20-
run: ./gradlew :versions:1.20.1:build :versions:1.20.4:build :versions:1.20.6:build :versions:1.21:build :versions:1.21.1:build :versions:1.21.3:build :versions:1.21.4:build
20+
run: ./gradlew :1.20.1:build :1.20.4:build :1.20.6:build :1.21:build :1.21.1:build :1.21.3:build :1.21.4:build
2121
- name: consolidate artifacts
2222
run: |
2323
mkdir all-libs

0 commit comments

Comments
 (0)