mirror of
				https://github.com/homarr-labs/dashboard-icons.git
				synced 2025-11-04 11:20:55 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			305 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			15 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 }}"
 |