Merge pull request #5 from rpanachi/dependabot/bundler/rexml-3.3.6 #3
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
name: Scheduled Publish | ||
on: | ||
schedule: | ||
- cron: '30 13 * * Mon' # Run at 10:30am every day | ||
jobs: | ||
refresh: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Trigger GitHub Pages Publish action | ||
run: | | ||
curl --fail --request POST \ | ||
--url https://api.github.com/repos/rpanachi/rpanachi.github.io/actions/workflows/jekyll.yml/dispatches \ | ||
--header "Authorization: token $TOKEN" \ | ||
-d '{"ref":"master"}' | ||
env: | ||
TOKEN: ${{ secrets.PUBLISH_TOKEN }} |