From 934eee184bb6d7294c171b587baf08e1f311d188 Mon Sep 17 00:00:00 2001 From: Pradyumna Krishna Date: Thu, 17 Aug 2023 11:02:48 +0530 Subject: [PATCH] Add cron trigger to test Adds a weekly cron trigger to run the workflow periodically. Signed-off-by: Pradyumna Krishna --- .github/workflows/test.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 26d6a68..462acc0 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,6 +1,12 @@ name: Cross compatibility test -on: [push, pull_request, workflow_dispatch] +on: + push: + pull_request: + workflow_dispatch: + schedule: + - cron: '0 0 * * 1' + jobs: test: