Update Submodules #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: | |
schedule: | |
- cron: '0 * * * *' # This runs the workflow every hour | |
workflow_dispatch: # Allows you to manually trigger the workflow | |
jobs: | |
update-submodules: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the jobify repository | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Update submodules to the latest commit | |
run: | | |
git submodule update --remote | |
git add . | |
git commit -m "Update submodules to latest commit" | |
git push origin main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |