Auto update submodules every 30 min #366
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: Auto update submodules every 30 min | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "*/30 * * * *" | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'kodsnack' | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.PRIVATE_TOKEN_GITHUB }} | |
- name: Pull & update submodules recursively | |
run: | | |
git submodule update --init | |
git submodule update --remote | |
- name: Commit | |
run: | | |
git config user.email "actions@github.com" | |
git config user.name "GitHub Actions - update submodules" | |
git add --all | |
git commit -m "Update submodules" || echo "No changes to commit" | |
git push |