Scheduled Netlify Build #237
  
    
      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: Scheduled Netlify Build | |
| on: | |
| schedule: | |
| # 07:01 every Wednesday | |
| - cron: "1 7 * * 3" | |
| jobs: | |
| build: | |
| name: Call Netlify build hook | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Curl request | |
| run: curl -X POST -d {} ${{ secrets.NETLIFY_BUILD_WEBHOOK }} |