Scheduled Version Check #2700
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: Scheduled Version Check | |
on: | |
schedule: [{cron: "0 4,16 * * *"}] | |
push: | |
paths: | |
- '_includes/matrix_base.md' | |
- '!_includes/matrix_prod.md' | |
workflow_dispatch: | |
jobs: | |
health_check_job: | |
runs-on: ubuntu-latest | |
name: Check all sites | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run Shell Script | |
id: shell_script_run | |
run: bash -x ./test.sh | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Update Matrix homeserver versions | |
commit_author: github-actions[bot] <github-actions[bot]@users.noreply.github.com> |