Skip to content

Commit ed5e532

Browse files
committed
feat(ci): allow releasing bridge separately
1 parent ed93710 commit ed5e532

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

Diff for: .github/workflows/bridge.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,19 @@ on:
44
workflow_run:
55
workflows: ["Release Tag"]
66
types: [completed]
7+
workflow_dispatch:
8+
inputs:
9+
force:
10+
description: 'Force execution of this action'
11+
type: boolean
12+
required: false
13+
default: true
714

815
jobs:
916
Bridge:
1017
runs-on: ubuntu-latest
1118
environment: tags
12-
if: ${{ github.event.workflow_run.conclusion == 'success' }}
19+
if: ${{ github.event.workflow_run.conclusion == 'success' || inputs.force }}
1320
steps:
1421
- uses: actions/checkout@v3
1522

0 commit comments

Comments
 (0)