Skip to content

Update update-submodules.yml #19

Update update-submodules.yml

Update update-submodules.yml #19

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: Configure Git identity
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Update submodules
run: |
git submodule foreach '
git pull --ff-only origin $(git rev-parse --abbrev-ref HEAD) ||
git pull --no-rebase --allow-unrelated-histories origin $(git rev-parse --abbrev-ref HEAD) ||
true'
- name: Commit and push updated submodules
run: |
git add .
git commit -m "Update submodules to latest commit" || echo "No changes to commit"
git push