GitHub Actions Scheduled Tasks Demo #1181
Workflow file for this run
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: GitHub Actions Scheduled Tasks Demo | |
on: | |
schedule: | |
- cron: '*/5 * * * *' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Schduled task | |
run: echo "This is a scheduled task" |