mirror of
https://github.com/walkxcode/dashboard-icons.git
synced 2025-07-01 17:00:23 +08:00
16 lines
305 B
YAML
16 lines
305 B
YAML
name: Trigger Cloudflare Pages Build
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *' # Runs every day at midnight UTC
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
cron_job:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Run Your Cron Job
|
|
run: |
|
|
curl -X POST "${{ secrets.CLOUDFLARE_DEPLOY_HOOK_URL }}"
|