Scheduled Events
With the Aviator Pilot framework, you can configure rules to trigger actions on a specific fixed schedule. Get instructions on configuring a schedule here.
Configuring schedule
scenarios:
- name: pause the queue
trigger:
schedule:
# pause the queue at 11pm UTC every Friday
cron_utc: "0 23 * * 5"
actions:
- mergequeue: pausescenarios:
- name: "nightly build"
trigger:
schedule:
cron_utc: "0 12 * * *" # Every day at 12pm UTC
actions:
- test_suite:
rerun:
name: "buildkite/pytest"
count: 5
use_latest_green_commit: true
branch: "master"
Last updated
Was this helpful?
