Skip to content

Commit 6075843

Browse files
feat(ci): Add cron job to run at night every 2 hours
1 parent 6c7066e commit 6075843

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/build_and_run_main_ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77
name: Build and Run Test apps
88

99
on:
10+
schedule:
11+
- cron: "0 0 * * *" # 00:00 UTC
12+
- cron: "0 2 * * *" # 02:00 UTC
13+
- cron: "0 4 * * *" # 04:00 UTC
14+
- cron: "0 6 * * *" # 06:00 UTC
1015
pull_request:
1116
types: [opened, reopened, synchronize]
1217

0 commit comments

Comments
 (0)