Schedule server ping #2167
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/workflows/main.yml | |
name: Schedule server ping | |
on: | |
schedule: | |
# Run at every 10 mins | |
- cron: '*/10 * * * *' | |
jobs: | |
build: | |
name: Request server ping | |
runs-on: ubuntu-latest | |
steps: | |
- name: Curl endpoint | |
uses: indiesdev/curl@v1.1 | |
with: | |
url: https://stremio-addon-debrid-search.onrender.com/manifest.json | |
log-response: true |