Update Submodules #4
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: | |
# schedule: | |
# run daily at midnight | |
# - cron: '0 0 * * *' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# Uses the private access token from above link | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# Initialize or update each one recursively | |
- name: Pull & update submodules recursively | |
run: | | |
git submodule update --init --recursive | |
git submodule update --recursive --remote | |
# Commit to the repo under the GitHub actions user to ensure we have | |
# reasonable logging to trace back | |
- name: Commit & push changes | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "GitHub Actions - update submodules" | |
git commit -am "Update submodules" || echo "No changes to commit" | |
checks: | |
needs: update | |
uses: ./.github/workflows/checks.yml | |
push: | |
runs-on: ubuntu-latest | |
needs: checks | |
steps: | |
- name: Push | |
run: | | |
git push |