Skip to content

Commit 362f43b

Browse files
committed
Git stuff
1 parent 063bcc5 commit 362f43b

3 files changed

Lines changed: 142 additions & 0 deletions

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Addition or Enhancement
2+
description: Suggest something that would improve Reliable Recipes
3+
labels: [ "enhancement" ]
4+
body:
5+
- type: textarea
6+
attributes:
7+
label: Describe the Addition
8+
description: What should we add or change to the mod to make it better?
9+
validations:
10+
required: true
11+
- type: textarea
12+
attributes:
13+
label: Screenshots and Videos
14+
description: If applicable, add screenshots or videos to help explain your suggestion
15+
validations:
16+
required: false
17+
- type: textarea
18+
attributes:
19+
label: Additional Context
20+
description: Add any extra context about the addition here
21+
validations:
22+
required: false
23+
- type: markdown
24+
attributes:
25+
value: "Thank you for taking the time to suggest this addition and to help improve Reliable Recipes!"
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
name: Bug Report
2+
description: Create a bug report to help me improve EMI++ Backport.
3+
labels: [ "bug" ]
4+
body:
5+
- type: textarea
6+
attributes:
7+
label: Describe the Bug
8+
description: A clear and concise description of what the bug is
9+
validations:
10+
required: true
11+
- type: textarea
12+
attributes:
13+
label: Reproduction Steps
14+
description: Tell me about the steps to reproduce the bug
15+
value: |
16+
1.
17+
2.
18+
3.
19+
validations:
20+
required: true
21+
- type: textarea
22+
attributes:
23+
label: Expected Result
24+
description: A clear and concise description of what you expected to happen
25+
validations:
26+
required: true
27+
- type: textarea
28+
attributes:
29+
label: Screenshots and Videos
30+
description: If applicable, add screenshots or videos to help explain your problem
31+
validations:
32+
required: false
33+
- type: dropdown
34+
attributes:
35+
label: Mod Version
36+
description: The version of EMI++ Backport you were using
37+
options:
38+
- "1.0.1"
39+
- "1.0.0"
40+
validations:
41+
required: true
42+
- type: dropdown
43+
attributes:
44+
label: Style
45+
description: The style of EMI++ Backport you were using
46+
options:
47+
- "Default"
48+
- "Vanilla"
49+
- "Berry"
50+
validations:
51+
required: true
52+
- type: dropdown
53+
attributes:
54+
label: Mod Loader
55+
description: Which mod loader were you using?
56+
options:
57+
- "Forge"
58+
- "Fabric"
59+
validations:
60+
required: true
61+
- type: textarea
62+
attributes:
63+
label: Other Mods / Modpack
64+
description: Please list other mods or the name of the modpack you are running.
65+
validations:
66+
required: false
67+
- type: textarea
68+
attributes:
69+
label: Additional Context
70+
description: Attach crash reports or logs here (use mclo.gs or similar if long).
71+
validations:
72+
required: false
73+
- type: markdown
74+
attributes:
75+
value: "Thank you for taking the time to fill out this bug report!"

.github/workflows/build.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout Repository
15+
uses: actions/checkout@v4
16+
17+
- name: Validate Gradle Wrapper
18+
uses: gradle/wrapper-validation-action@v2
19+
20+
- name: Setup Java 21
21+
uses: actions/setup-java@v4
22+
with:
23+
distribution: 'temurin'
24+
java-version: '21'
25+
26+
- name: Make Gradle Wrapper Executable
27+
run: chmod +x gradlew
28+
29+
- name: Build with Gradle
30+
uses: gradle/gradle-build-action@v3
31+
with:
32+
arguments: build
33+
34+
- name: Capture Build Artifacts
35+
if: success()
36+
uses: actions/upload-artifact@v4
37+
with:
38+
name: ReliableRecipes-${{ github.ref_name }}
39+
path: |
40+
**/build/libs/*.jar
41+
!**/build/libs/*-sources.jar
42+
!**/build/libs/*-dev.jar

0 commit comments

Comments
 (0)