cron test #28
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: cron test | |
on: | |
# 当对分支main进行push操作的时候,这个工作流就被触发了 | |
push: | |
branches: [ main ] | |
schedule: | |
# Runs everyday at 8:00 AM | |
- cron: "0 8 * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: test | |
run: | | |
echo abcd |