Trigger Netlify Build Daily #800
This file contains 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
# .github/workflows/main.yml | |
name: Trigger Netlify Build Daily | |
on: | |
schedule: | |
# Run at 0815 daily | |
- cron: '15 8 * * *' | |
jobs: | |
build: | |
name: Request Netlify Webhook | |
runs-on: ubuntu-latest | |
steps: | |
- name: Curl request | |
run: curl -X POST -d {} ${{ secrets.NETLIFY_BUILD_WEBHOOK }} |