From 7ca1cc46036fef54ee38d49d30f20630a96feebb Mon Sep 17 00:00:00 2001 From: Jashandeep Sohi Date: Thu, 3 Nov 2022 13:46:20 -0700 Subject: [PATCH] allow running GH docs workflow manually --- .github/workflows/docs-gh-pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs-gh-pages.yml b/.github/workflows/docs-gh-pages.yml index 5ce7b6a..7480513 100644 --- a/.github/workflows/docs-gh-pages.yml +++ b/.github/workflows/docs-gh-pages.yml @@ -10,7 +10,7 @@ on: workflow_dispatch: jobs: build: - if: github.event_name == 'create' && github.event.ref_type == 'tag' && github.event.repository.fork == false + if: github.event_name == 'workflow_dispatch' || github.event_name == 'create' && github.event.ref_type == 'tag' && github.event.repository.fork == false runs-on: ubuntu-latest env: CONFIGDB_URL: http://configdb-dev