From c63145aeb951ef1cac81b6676eaf72a12aca642b Mon Sep 17 00:00:00 2001 From: Abdul Fatir Date: Mon, 3 Jun 2024 09:16:36 +0200 Subject: [PATCH] Update ci.yml with schedule (#95) *Description of changes:* Run CI at 8 AM UTC every day. By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. Co-authored-by: Lorenzo Stella --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 29693c5..0b206df 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,12 @@ name: CI -on: [push, pull_request] +on: + push: + branches: ["**"] # Run on any branch + pull_request: + branches: ["**"] # Run on any branch + schedule: + - cron: "0 8 * * *" # Run at 8 AM UTC jobs: type-check: