Skip to content

Commit 65afd9f

Browse files
authored
ci(canary): run canary every 15 minutes instead of hourly (#1707)
Tightens the canary schedule from '0 * * * *' (hourly) to '*/15 * * * *' so breakages in our dependencies or the service (e.g. the CDK schema mismatch that broke deployments) surface within ~15 min instead of up to an hour later. Runs stay serialized via the existing 'canary' concurrency group, so a run that overruns 15 min queues the next one rather than overlapping.
1 parent 4786786 commit 65afd9f

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/canary.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
name: Canary
22

33
on:
4-
# Run once an hour
4+
# Run every 15 minutes to catch dependency/service breakages (e.g. CDK
5+
# schema mismatches) quickly instead of up to an hour later.
56
schedule:
6-
- cron: '0 * * * *'
7+
- cron: '*/15 * * * *'
78
workflow_dispatch:
89
inputs:
910
aws_region:

0 commit comments

Comments
 (0)