From 6264a70f704fc7694cbf8edf807e655245864569 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Wed, 20 Oct 2021 01:41:39 -0700 Subject: [PATCH] chore: do not publish driver on every commit (#9634) With this patch: - one can trigger driver publish manually - driver will be published once a day for master branch - driver will be published for every commit of release branch --- .github/workflows/publish_canary_driver.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish_canary_driver.yml b/.github/workflows/publish_canary_driver.yml index edbf1dacf2..20afadcfe1 100644 --- a/.github/workflows/publish_canary_driver.yml +++ b/.github/workflows/publish_canary_driver.yml @@ -1,9 +1,11 @@ name: "devrelease:driver" on: + workflow_dispatch: + schedule: + - cron: "10 0 * * *" push: branches: - - master - release-* jobs: