diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 4d0c8adc99..725e6d8356 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -7,6 +7,9 @@ on: - 'release-' tags: '*' pull_request: + schedule: + # Every day at 3:05 AM UTC (Tutorial tests initiated at 2:00AM) + - cron: '5 3 * * *' concurrency: # group by workflow and ref; the last slightly strange component ensures that for pull diff --git a/.github/workflows/oscar.yml b/.github/workflows/oscar.yml index 00a1074f4d..1a60385303 100644 --- a/.github/workflows/oscar.yml +++ b/.github/workflows/oscar.yml @@ -1,9 +1,13 @@ name: OscarCI on: - pull_request: - branches: - - master + pull_request: + branches: + - master + schedule: + # Every day at 3:05 AM UTC (Tutorial tests initiated at 2:00AM) + - cron: '5 3 * * *' + concurrency: # group by workflow and ref; the last slightly strange component ensures that for pull