From 91fe5590dc424874e06951ae1c1a693054fefd97 Mon Sep 17 00:00:00 2001 From: Aram Date: Wed, 4 Sep 2024 15:43:36 +0200 Subject: [PATCH 1/2] Fixed Workflow (#33) --- .github/workflows/ci.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15e2ea33..85f0649b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,10 +3,10 @@ name: CI for Minecraft Mod on: pull_request: branches: - - 1.20.4 + - 1.18 push: branches: - - 1.20.4 + - 1.18 jobs: build: @@ -34,18 +34,8 @@ jobs: - name: Grant execute permission for Gradle wrappers run: | - chmod +x NeoForge/gradlew chmod +x Forge/gradlew - - name: Build for NeoForge - run: cd NeoForge && ./gradlew build - - name: Build for Forge run: cd Forge && ./gradlew build - - name: Run Additional Tasks for NeoForge - run: cd NeoForge && ./gradlew jar - - - name: Run Additional Tasks for Forge - run: cd Forge && ./gradlew jar - From 071ee1c09ff09ad27c5e6997638190cae0b6e7b8 Mon Sep 17 00:00:00 2001 From: Aram Date: Wed, 4 Sep 2024 15:57:55 +0200 Subject: [PATCH 2/2] Added PR Template (#36) --- .github/PULL_REQUEST_TEMPLATE/PullRequest.md | 26 ++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE/PullRequest.md diff --git a/.github/PULL_REQUEST_TEMPLATE/PullRequest.md b/.github/PULL_REQUEST_TEMPLATE/PullRequest.md new file mode 100644 index 00000000..2241979c --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/PullRequest.md @@ -0,0 +1,26 @@ +## Description + + +## Changes +- **Change 1**: Description of what was changed. +- **Change 2**: Description of what was changed. + +## How has this been tested? + + +## Screenshots (if applicable) + + +## Type of Change +- [ ] Bug fix +- [ ] New feature +- [ ] Documentation update + +## Checklist +- [ ] My code follows the style guidelines of this project. [Contributing](https://github.com/MeAlam1/BlueLib/blob/1.21/CONTRIBUTING.md) +- [ ] I have performed a self-review of my own code. +- [ ] I have commented my code following the guidelines. [Contributing](https://github.com/MeAlam1/BlueLib/blob/1.21/CONTRIBUTING.md) +- [ ] My changes generate no new warnings. + +## Related Issues + \ No newline at end of file