Skip to content

Commit bf5883e

Browse files
committed
Fix
1 parent c700f3d commit bf5883e

File tree

1 file changed

+2
-2
lines changed
  • .github/actions/reports-group/codecov-uploader

1 file changed

+2
-2
lines changed

.github/actions/reports-group/codecov-uploader/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ inputs:
3333
Default value:
3434
- `pull_request` workflow: `github.event.number`
3535
- `workflow_run` workflow triggered by a `pull_request` workflow: `github.event.workflow_run.pull_requests[0].number`
36-
default: "${{ ('workflow_run' == github.event_name && 'pull_request' == github.workflow_run.event && && github.event.workflow_run.pull_requests[0] && github.event.workflow_run.pull_requests[0].number) || ('pull_request' == github.event_name && github.event.pull_request.head.ref) || null }}"
36+
default: "${{ ( 'workflow_run' == github.event_name && 'pull_request' == github.workflow_run.event && github.event.workflow_run.pull_requests[0] && github.event.workflow_run.pull_requests[0].number) || ('pull_request' == github.event_name && github.event.pull_request.head.ref) || null }}"
3737
# commit-parent: # @TODO Not sure what it is (enable debug mode during upload to see what is actually sent by the uploader)
3838
# description: |
3939
# Parent commit to link to the uploaded reports. Most likely only useful for PR.
@@ -47,7 +47,7 @@ inputs:
4747
Default value:
4848
- `workflow_run` workflow: `github.event.workflow_run.id`
4949
- Else: `github.run_id`
50-
default: "${{ ('workflow_run' == github.event_name && github.event.workflow_run.id) || github.run_id || null) }}"
50+
default: "${{ ('workflow_run' == github.event_name && github.event.workflow_run.id) || github.run_id || null }}"
5151
override-build-url:
5252
description: |
5353
Workflow run url to link to the uploaded reports

0 commit comments

Comments
 (0)