We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed93710 commit ed5e532Copy full SHA for ed5e532
.github/workflows/bridge.yml
@@ -4,12 +4,19 @@ on:
4
workflow_run:
5
workflows: ["Release Tag"]
6
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
14
15
jobs:
16
Bridge:
17
runs-on: ubuntu-latest
18
environment: tags
- if: ${{ github.event.workflow_run.conclusion == 'success' }}
19
+ if: ${{ github.event.workflow_run.conclusion == 'success' || inputs.force }}
20
steps:
21
- uses: actions/checkout@v3
22
0 commit comments