Check Servers Online #3554
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
# ---------------------------------------------------------------------------- | |
# GitHub Actions workflow to regularly check servers. | |
# ---------------------------------------------------------------------------- | |
name: Check Servers Online | |
on: | |
schedule: | |
- cron: '23 * * * *' | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
check_servers: | |
name: Check Servers | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check Online | |
run: ./scripts/check_online.sh | |
- name: Check Old SourceForge Online | |
run: ./scripts/check_online_sourceforge.sh |