From 28c8f4faf9f6d2fe9fb16932594e1520c05c5508 Mon Sep 17 00:00:00 2001 From: MelanX Date: Tue, 9 Jul 2024 19:44:01 +0200 Subject: [PATCH] [meta] add compatibility test with latest neoforge version --- .../workflows/check_latest_compatibility.yml | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/check_latest_compatibility.yml diff --git a/.github/workflows/check_latest_compatibility.yml b/.github/workflows/check_latest_compatibility.yml new file mode 100644 index 0000000..e3d850a --- /dev/null +++ b/.github/workflows/check_latest_compatibility.yml @@ -0,0 +1,29 @@ +name: Check NeoForge compatibility +on: + workflow_dispatch: + schedule: + - cron: '0 3 * * 5' + +jobs: + check: + runs-on: ubuntu-latest + + steps: + - name: Get latest NeoForge + id: get-version + uses: ChaoticTrials/action-latest-forge@v1.0.0 + with: + minecraft-version: 1.21 + + - name: Check compiling + uses: ChaoticTrials/action-test-different-property@v1.0.0 + with: + gradle-property: neo_version + gradle-value: ${{ steps.get-version.outputs.version }} + properties-file: gradle.properties + issue-title: [${{ steps.get-version.inputs.minecraft-version }}]NeoForge incompatibility + issue-comment: | + # NeoForge incompatibility + ## NeoForge version + - ${{ inputs.gradle-value }} + issue-labels: Compat, bug