Update Projects #259
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 Projects | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
version-bump: | |
name: Update Projects | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@v2 | |
- name: Pull the latest changes | |
run: | | |
git config user.name inobot | |
git config user.email bot@inovuslabs.org | |
git submodule update --remote --init || true | |
- name: Commit changes | |
run: | | |
git add --all || true | |
git commit -m "Updated projects" || true | |
git push --quiet | |
- name: Repository keepalive | |
uses: gautamkrishnar/keepalive-workflow@master |