GitHub Actions drive me nuts. #3
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: | ||
push: | ||
branches: | ||
- main # Adjust this branch name as needed | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 */6 * * *' | ||
jobs: | ||
update: | ||
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: | ||
# Checkout the repository to the GitHub Actions runner | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
token: ${{ secrets.CI_TOKEN }} | ||
submodules: true | ||
- name: Generate Change Log | ||
id: generate_changelog | ||
run: | | ||
# Generate change logs for all submodules | ||
changelog=$(git submodule foreach 'git log --pretty=format:"%an: %s" HEAD..origin/main') | ||
echo "$changelog" | ||
echo "changelog=$changelog" >> $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" |