File tree Expand file tree Collapse file tree 2 files changed +16
-5
lines changed Expand file tree Collapse file tree 2 files changed +16
-5
lines changed 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 6
6
branches-ignore :
7
7
- gh-readonly-queue/** # Temporary merge queue-related GH-made branches
8
8
pull_request :
9
- schedule :
10
- - cron : " 0 6 * * *" # daily at 6am
9
+ workflow_call :
11
10
12
11
concurrency :
13
12
group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
47
46
# This job does nothing and is only used for the branch protection
48
47
# or multi-stage CI jobs, like making sure that all tests pass before
49
48
# a publishing job is started.
50
- if : >-
51
- github.repository_owner == 'pypa'
52
- || github.event_name != 'schedule'
49
+ if : always()
53
50
54
51
needs :
55
52
- build
You can’t perform that action at this time.
0 commit comments