Update #16
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 | |
# Run this workflow every time code is pushed to any branch | |
on: | |
push: | |
branches: | |
- '**' # This runs on any branch | |
jobs: | |
update-submodules: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the repository | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' # Ensure submodules are checked out | |
# Run the submodule update command | |
- name: Update submodules | |
run: git submodule update --remote | |
# Commit updated submodules (if any) | |
- name: Commit changes | |
run: | | |
git config --global user.name "github-actions[bot]" | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
git add . | |
git commit -m "CI: Update submodules" || echo "No changes to commit" | |
# Push changes back to the repository using PAT | |
- name: Push changes | |
env: | |
TOKEN: ${{ secrets.PAT_TOKEN }} | |
run: | | |
git remote set-url origin https://x-access-token:${TOKEN}@github.com/${{ github.repository }}.git | |
git push origin HEAD |