Update Submodules #12
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: | |
workflow_dispatch: | |
permissions: write-all | |
jobs: | |
sync: | |
name: 'Update Submodules' | |
runs-on: ubuntu-latest | |
# Use the Bash shell regardless whether the GitHub Actions runner is ubuntu-latest, macos-latest, or windows-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.CI_TOKEN }} | |
submodules: true | |
- name: Generate Change Log | |
id: generate_changelog | |
run: | | |
echo "changelog=$(git submodule foreach --quiet 'git log --pretty=format:"%an: %s" HEAD..origin/main' | xargs)" >> $GITHUB_OUTPUT | |
- name: Update Submodules | |
run: | | |
git pull --recurse-submodules | |
git submodule update --remote --recursive | |
- name: Commit Change Log | |
run: | | |
git config --global user.name 'Git bot' | |
git config --global user.email '[email protected]' | |
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} | |
git commit -am "${{ steps.generate_changelog.outputs.changelog }}" && git push || echo "No changes to commit" |