From 4cd794e8635cb1f7d929e26486f551aa776b2c0d Mon Sep 17 00:00:00 2001 From: Asriel Date: Thu, 11 Sep 2025 09:57:35 -0700 Subject: [PATCH] Fix Lumina.Excel branch in workflow --- .github/workflows/update-submodules.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-submodules.yml b/.github/workflows/update-submodules.yml index 61a900395..686974ad5 100644 --- a/.github/workflows/update-submodules.yml +++ b/.github/workflows/update-submodules.yml @@ -1,7 +1,7 @@ name: Check for Submodule Changes on: schedule: - - cron: "0 0,12,18 * * *" + - cron: "0 0,6,12,18 * * *" workflow_dispatch: jobs: @@ -9,14 +9,17 @@ jobs: name: Check ${{ matrix.submodule.name }} runs-on: ubuntu-latest strategy: + fail-fast: false matrix: branches: [master] submodule: - name: ClientStructs path: lib/FFXIVClientStructs + branch: main branch-prefix: csupdate - name: Excel Schema path: lib/Lumina.Excel + branch: master branch-prefix: schemaupdate defaults: @@ -43,7 +46,7 @@ jobs: git reset --hard origin/${{ matrix.branches }} cd ${{ matrix.submodule.path }} git fetch - git reset --hard origin/main + git reset --hard origin/${{ matrix.submodule.branch }} cd ../.. git add ${{ matrix.submodule.path }} git commit --message "Update ${{ matrix.submodule.name }}"