This repository was archived by the owner on Jul 24, 2026. It is now read-only.
Topmo cron tick #26
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: Topmo cron tick | |
| on: | |
| schedule: | |
| - cron: '*/30 * * * *' | |
| workflow_dispatch: | |
| jobs: | |
| tick: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger Topmo cron endpoint | |
| run: | | |
| curl -sS -X POST \ | |
| -H "Authorization: Bearer ${{ secrets.CRON_SECRET }}" \ | |
| -H "Content-Type: application/json" \ | |
| "${{ secrets.APP_URL }}/api/cron/tick" |