File tree Expand file tree Collapse file tree 4 files changed +25
-48
lines changed Expand file tree Collapse file tree 4 files changed +25
-48
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Continuous Deployment
2+
3+ on :
4+ push :
5+ branches : [main]
6+
7+ concurrency :
8+ group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
9+ cancel-in-progress : true
10+
11+ jobs :
12+ verify :
13+ name : Verify
14+ uses : ./.github/workflows/verify.yml
15+ secrets : inherit
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