Submodule Update #884
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
on: | |
# pull_request: | |
schedule: | |
- cron: '0 0 * * *' | |
name: Submodule Update | |
jobs: | |
submodule_update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: config | |
run: | | |
git config user.name ${{ github.actor }} | |
git config user.email noreply@github.com | |
- name: submodule update | |
run: | | |
git fetch | |
git checkout master | |
git submodule init | |
git submodule update --remote | |
# git submodule foreach "git remote show origin | grep 'HEAD branch' | awk '{print \$NF}' | xargs -I{} git pull origin {}" | |
- name: commit | |
run: | | |
git add -A | |
git commit -m "update head [ci skip]" || true | |
- name: push | |
run: | | |
git push origin master |