Skip to content

Commit def184e

Browse files
committed
Add the trigger job
1 parent 6e72173 commit def184e

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Schedule a nightly run of the Score Director performance benchmark
2+
3+
on:
4+
schedule:
5+
- cron: '0 0 * * *' # Every day at the start of the day
6+
7+
jobs:
8+
trigger:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Schedule the other workflow
12+
shell: bash
13+
run: |
14+
echo '{}' | gh workflow run performance_score_director.yml --json

.github/workflows/turtle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Turtle Tests
22

33
on:
44
schedule:
5-
- cron: '0 2 * * *' # Every day at 2am UTC
5+
- cron: '0 3 * * *' # Every day at 3am UTC
66

77
jobs:
88
test:

0 commit comments

Comments
 (0)