From fccff5ec1be2c513b1b3234182322d8dbe630cad Mon Sep 17 00:00:00 2001 From: sami Date: Thu, 23 Sep 2021 17:12:27 +0100 Subject: [PATCH] Update github workflow to allow triggering manual deploys for staging --- .github/workflows/staging.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/staging.yml b/.github/workflows/staging.yml index 52985f7..4bdef56 100644 --- a/.github/workflows/staging.yml +++ b/.github/workflows/staging.yml @@ -1,6 +1,13 @@ name: Staging Pipeline -on: [pull_request] +on: + pull_request: + workflow_dispatch: + inputs: + reason: + description: 'Manual Deployment Reason' + required: false + default: 'Rebuild staging api' jobs: run-tests: