From 09789f07570925baad837c593ac91cdd10b0f815 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Fri, 16 Aug 2024 16:46:41 +0100 Subject: [PATCH] ci: add weekly scheduled runs The toolchain and dependencies can be updated, flagging new warning and/or errors. Schedule a weekly run, to flag those. Otherwise, we easily end with a new PR which is flagged as problematic, due to pre-existing issues. Currently it triggers on Sun at 2:30am Signed-off-by: Emil Velikov Link: https://github.com/kmod-project/kmod/pull/76 Signed-off-by: Lucas De Marchi --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2d63660b..61d20ee5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,6 +5,8 @@ on: branches: [master, ci-test] pull_request: branches: [master] + schedule: + - cron: "30 2 * * 0" permissions: contents: read -- 2.47.3