Skip to content

Commit 38f2619

Browse files
authored
Merge pull request #443 from AhmedLSayed9/ci_daily_schedule
Run CI daily to catch regressions from new Flutter releases
2 parents 0deedf9 + f97756a commit 38f2619

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,16 @@ name: Build
22

33
on:
44
push:
5-
branches: [master, main]
5+
branches: [ master, main ]
66
paths-ignore:
77
- "**.md"
88
pull_request:
99
paths-ignore:
1010
- "**.md"
11+
schedule:
12+
# Run daily at 03:00 UTC to catch regressions from new Flutter releases
13+
# (scheduled workflows only run on the default branch).
14+
- cron: "0 3 * * *"
1115

1216
jobs:
1317
build:

0 commit comments

Comments
 (0)