From 3e8bb0748e3eb8faf9fdb8028c5e3452294cb36c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ad=C3=A1n=20SDPC?= Date: Wed, 17 May 2023 11:27:08 +0200 Subject: [PATCH] feat(ci): allow releasing bridge separatelly --- .github/workflows/bridge.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/bridge.yml b/.github/workflows/bridge.yml index 506b16ff5..9276cb4b1 100644 --- a/.github/workflows/bridge.yml +++ b/.github/workflows/bridge.yml @@ -4,12 +4,19 @@ on: workflow_run: workflows: ["Release Tag"] types: [completed] + workflow_dispatch: + inputs: + force: + description: 'Force execution of this action' + type: boolean + required: false + default: true jobs: Bridge: runs-on: ubuntu-latest environment: tags - if: ${{ github.event.workflow_run.conclusion == 'success' }} + if: ${{ github.event.workflow_run.conclusion == 'success' || inputs.force }} steps: - uses: actions/checkout@v3