File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
.github/actions/reports-group Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -16,9 +16,10 @@ inputs:
1616 description : |
1717 Commit to link to the uploaded reports.
1818 Default value:
19- - `push` and `pull_request` workflow: `github.event.after`
19+ - `push` workflow: `github.sha`
20+ - `pull_request` workflow: `github.event.pull_request.head.sha`
2021 - `workflow_run` workflow triggered by a `pull_request` or `push` workflow: `github.event.workflow_run.head_sha`
21- default : " ${{ ('workflow_run' == github.event_name && ('pull_request' == github.event.workflow_run.event || 'push' == github.event.workflow_run.event) && github.event.workflow_run.head_sha) || (( 'pull_request' == github.event_name || 'push' == github.event_name) && github.event.after ) || null }}"
22+ default : " ${{ ('workflow_run' == github.event_name && ('pull_request' == github.event.workflow_run.event || 'push' == github.event.workflow_run.event) && github.event.workflow_run.head_sha) || ('pull_request' == github.event_name && github.event.pull_request.head.sha) || ( 'push' == github.event_name && github.sha ) || null }}"
2223
2324outputs :
2425 groups :
Original file line number Diff line number Diff line change @@ -16,9 +16,10 @@ inputs:
1616 description : |
1717 Commit to link to the uploaded reports.
1818 Default value:
19- - `push` and `pull_request` workflow: `github.event.after`
19+ - `push` workflow: `github.sha`
20+ - `pull_request` workflow: `github.event.pull_request.head.sha`
2021 - `workflow_run` workflow triggered by a `pull_request` or `push` workflow: `github.event.workflow_run.head_sha`
21- default : " ${{ ('workflow_run' == github.event_name && ('pull_request' == github.event.workflow_run.event || 'push' == github.event.workflow_run.event) && github.event.workflow_run.head_sha) || (( 'pull_request' == github.event_name || 'push' == github.event_name) && github.event.pull_request.head .sha) || null }}"
22+ default : " ${{ ('workflow_run' == github.event_name && ('pull_request' == github.event.workflow_run.event || 'push' == github.event.workflow_run.event) && github.event.workflow_run.head_sha) || ('pull_request' == github.event_name && github.event.pull_request.head.sha) || ( 'push' == github.event_name && github.sha) || null }}"
2223 override-branch :
2324 description : |
2425 Branch to link to the uploaded reports.
You can’t perform that action at this time.
0 commit comments