Keep Alive #5647
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: Keep Alive | |
on: | |
schedule: | |
- cron: "*/2 * * * *" | |
workflow_dispatch: | |
env: | |
# This env can be multi-value, if separated by spaces. | |
# Example: https://example.com https://api.example.com | |
PING_ORIGINS: ${{ secrets.PING_ORIGINS }} | |
jobs: | |
keep-alive: | |
name: Keep Alive | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt install curl | |
shell: bash | |
- run: ./runners/keep-alive.sh | |
shell: bash |