File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 77 push :
88 branches :
99 - main
10+ workflow_dispatch :
11+ inputs :
12+ run-verify :
13+ type : boolean
14+ description : ' Run verification after release'
15+ required : false
16+ default : false
1017
1118concurrency : ${{ github.workflow }}-${{ github.ref }}
1219
3239
3340 verify :
3441 needs : release
35- if : ${{ needs.release.outputs.pullRequestNumber != '' }}
42+ if : ${{ inputs.run-verify && needs.release.outputs.pullRequestNumber != '' }}
3643 uses : ./.github/workflows/verify.yml
3744 secrets : inherit
3845 with :
Original file line number Diff line number Diff line change 1- name : ' Verify'
1+ name : Verify
22on :
33 workflow_call :
44 inputs :
4444
4545 steps :
4646 - uses : actions/checkout@v4
47-
47+
4848 - name : Setup Repository
4949 uses : ./.github/actions/setup
5050
6464 if : ${{ inputs.run-acceptance }}
6565 shell : bash
6666 run : pnpm spec
67-
68-
69-
You can’t perform that action at this time.
0 commit comments