Skip to content

Commit 9b1ee11

Browse files
committed
CI: add schedule trigger to run once a day
This way it will not catch us by surprise when suddenly CI fails when the reason is not really related to the commit being pushed, but by some change done on the GitHub side.
1 parent 973fda0 commit 9b1ee11

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/CI.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
name: CI
22

3-
on: [push, pull_request, workflow_dispatch]
3+
on:
4+
push:
5+
pull_request:
6+
workflow_dispatch:
7+
8+
# to execute once a day (more info see https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule )
9+
schedule:
10+
- cron: "0 0 * * *"
11+
412

513
# FIXME: figure out why we need to clean after make if we
614
# want 'make strict' target to really happen without

0 commit comments

Comments
 (0)