File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ---
2+
3+ name : Cron
4+
5+ on :
6+ schedule :
7+ - cron : " 0 6 * * *" # daily at 6am
8+
9+ jobs :
10+ test :
11+ if : github.repository_owner == 'pypa' # suppress noise in forks
12+ uses : ./.github/workflows/test.yml
13+
14+ ...
Original file line number Diff line number Diff line change 66 branches-ignore :
77 - gh-readonly-queue/** # Temporary merge queue-related GH-made branches
88 pull_request :
9- schedule :
10- - cron : " 0 6 * * *" # daily at 6am
9+ workflow_call :
1110
1211concurrency :
1312 group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
4746 # This job does nothing and is only used for the branch protection
4847 # or multi-stage CI jobs, like making sure that all tests pass before
4948 # a publishing job is started.
50- if : >-
51- github.repository_owner == 'pypa'
52- || github.event_name != 'schedule'
49+ if : always()
5350
5451 needs :
5552 - build
You can’t perform that action at this time.
0 commit comments