Update Submodules #112
This file contains hidden or 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: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 0 * * 0' | |
| jobs: | |
| update: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.CI_TOKEN }} | |
| submodules: true | |
| - name: Pull & update submodules recursively | |
| run: | | |
| git submodule update --init --recursive | |
| git submodule update --recursive --remote | |
| - name: Commit | |
| run: | | |
| git config user.email "[email protected]" | |
| git config user.name "GitHub Actions - update submodules" | |
| git add --all | |
| git commit -m "Update submodules" || echo "No changes to commit" | |
| git push origin HEAD:main |