diff --git a/.github/workflows/update-submodules.yml b/.github/workflows/update-submodules.yml new file mode 100644 index 0000000..01caa3a --- /dev/null +++ b/.github/workflows/update-submodules.yml @@ -0,0 +1,29 @@ +name: Update Submodules + +on: + push: + branches: + - main + workflow_dispatch: + +jobs: + update-submodules: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + with: + submodules: recursive + + - name: Update submodules + run: | + git submodule foreach git pull origin $(git rev-parse --abbrev-ref HEAD) + + - name: Commit and push updated submodules + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + git add . + git commit -m "Update submodules to latest commit" || echo "No changes to commit" + git push