From 6cf88256f28c4b9dbe32ab941a5004409411f986 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Mon, 30 Oct 2023 12:49:23 +0100 Subject: [PATCH] ci: Only run note-tests once per day on branches Signed-off-by: Joas Schilling --- .github/workflows/node-tests.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/node-tests.yml b/.github/workflows/node-tests.yml index 1800aa4777d..b0b134da423 100644 --- a/.github/workflows/node-tests.yml +++ b/.github/workflows/node-tests.yml @@ -2,10 +2,8 @@ name: Node tests on: pull_request: - push: - branches: - - master - - stable* + schedule: + - cron: "5 2 * * *" concurrency: group: node-tests-${{ github.head_ref || github.run_id }}