Update update-submodules.yml #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |