File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed
Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ name : finalize
3+ on :
4+ workflow_run :
5+ workflows :
6+ - tox
7+ types :
8+ - completed
9+
10+ permissions : read-all
11+
12+ jobs :
13+ finalize :
14+ if : |
15+ github.event.workflow_run.conclusion == 'success' &&
16+ (github.event.workflow_run.event == 'pull_request' ||
17+ (github.event.workflow_run.event == 'push' && github.event.workflow_run.head_branch == 'main'))
18+ uses : ansible/team-devtools/.github/workflows/finalize.yml@main
19+ with :
20+ run-id : ${{ github.event.workflow_run.id }}
21+ workflow-event : ${{ github.event.workflow_run.event }}
22+ head-sha : ${{ github.event.workflow_run.head_sha }}
23+ head-branch : ${{ github.event.workflow_run.head_branch }}
24+ head-repository : ${{ github.event.workflow_run.head_repository.full_name }}
25+ secrets : inherit
You can’t perform that action at this time.
0 commit comments