Skip to content

Commit

Permalink
test: run advanced tests nightly to detect breakages (#2064)
Browse files Browse the repository at this point in the history
* test: run advanced tests nightly to detect breakages

* update schedule
  • Loading branch information
gartnera committed May 7, 2024
1 parent 181ba7f commit b35ed3c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/execute_advanced_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,14 @@ on:
type: boolean
required: false
default: false
schedule:
# run at 6AM UTC Daily
# 6AM UTC -> 11PM PT
- cron: "0 6 * * *"

jobs:
e2e-admin-tests:
if: ${{ github.event.inputs.e2e-admin-tests == 'true' }}
if: ${{ github.event.inputs.e2e-admin-tests == 'true' || github.event_name == 'schedule' }}
runs-on: buildjet-4vcpu-ubuntu-2204
timeout-minutes: 120
steps:
Expand Down Expand Up @@ -65,7 +69,7 @@ jobs:
done
e2e-upgrade-test:
if: ${{ github.event.inputs.e2e-upgrade-test == 'true' }}
if: ${{ github.event.inputs.e2e-upgrade-test == 'true' || github.event_name == 'schedule' }}
runs-on: buildjet-4vcpu-ubuntu-2204
timeout-minutes: 120
steps:
Expand Down

0 comments on commit b35ed3c

Please sign in to comment.