From e39493f8bd39ca463c22838d0dac93a958ec6b66 Mon Sep 17 00:00:00 2001 From: grossmj Date: Fri, 23 Oct 2020 21:03:28 +1030 Subject: [PATCH] Only publish documentation once a day or on tags. --- .github/workflows/publish_api_documentation.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_api_documentation.yml b/.github/workflows/publish_api_documentation.yml index a75b0a9a..902c538c 100644 --- a/.github/workflows/publish_api_documentation.yml +++ b/.github/workflows/publish_api_documentation.yml @@ -1,8 +1,10 @@ name: publish-api-documentation on: - push: - branches: [ 3.0 ] + schedule: + - cron: "0 0 * * *" + tags: + - v3.* jobs: build: