Skip to content

Commit

Permalink
CI: add schedule trigger to run once a day
Browse files Browse the repository at this point in the history
This day 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.
  • Loading branch information
knocte committed Apr 25, 2024
1 parent 2857266 commit 93c540d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/CI.yml
@@ -1,6 +1,13 @@
name: CI

on: [push, pull_request, workflow_dispatch]
on:
push:
pull_request:
workflow_dispatch:

# to execute once a day (more info see https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule )
schedule:
- cron: "0 0 * * *"

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

0 comments on commit 93c540d

Please sign in to comment.