diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 6ab082f33e..496389708a 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 d42056605e..d00d084445 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