Ping Bot Every 12 Minutes #3079
This file contains hidden or 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: Ping Bot Every 12 Minutes | |
| on: | |
| schedule: | |
| - cron: "*/12 * * * *" # Every 12 minutes | |
| workflow_dispatch: # Optional: lets you manually trigger the action | |
| jobs: | |
| ping: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Curl Ping Endpoint | |
| run: curl -s https://bobatalks-introbot.onrender.com |