Skip to content

Commit cf958f9

Browse files
committed
Fix ...
1 parent cedfe31 commit cf958f9

File tree

10 files changed

+19
-20
lines changed

10 files changed

+19
-20
lines changed

.github/actions/reports-group/attach-check-run-to-triggering-workflow-action/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ inputs:
1212
required: false
1313
fails-on-triggering-workflow-failure:
1414
description: If `true` and triggering workflow is not sucessfull (error, cancellation, etc), add the check and throw an error in order to stop ongoing job
15-
required: true
15+
required: false
1616
default: 'false'
1717

1818
outputs:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ inputs:
1515
required: false
1616
follow-symbolic-links:
1717
description: Indicates whether to follow symbolic links when resolving `path`
18-
required: true
18+
required: false
1919
default: 'false'
2020

2121
outputs:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ inputs:
4747
required: false
4848
follow-symbolic-links:
4949
description: Indicates whether to follow symbolic links when resolving `path`
50-
required: true
50+
required: false
5151
default: 'false'
5252

5353
outputs:

.github/actions/reports-group/create-action/action.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,21 @@ inputs:
99
format:
1010
description: |
1111
`clover`, `cobertura`, `lcov`, etc. Default to 'unknown'
12-
required: true
1312
default: 'unknown'
1413
files:
1514
description: Multiline list of reports attached to the group
1615
required: true
1716
flags:
1817
description: Multiline list of flags attached to the group
19-
required: true
18+
required: false
2019
default: ''
2120
path:
2221
description: Root directory for the group directory (default to current directory)
23-
required: true
22+
required: false
2423
default: '.'
2524
follow-symbolic-links:
2625
description: Indicates whether to follow symbolic links when resolving `files`
27-
required: true
26+
required: false
2827
default: 'false'
2928

3029
outputs:

.github/actions/reports-group/fetch-workflow-metadata-action/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ inputs:
77
Weither to look for triggering workflow context or just current workflow context (default `true` !).
88
- True: In case current workflow event is `workflow_run`, the context of the workflow which **triggered** the current one will be returned. Else returns the current workflow context
99
- False: Return the context for the current workflow.
10-
required: true
10+
required: false
1111
default: 'true'
1212

1313
outputs:

.github/actions/reports-group/find-action/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ inputs:
88
format:
99
description: |
1010
`string` (default) or `json`
11-
required: true
11+
required: false
1212
default: 'string'
1313
glue-string:
1414
description: String used to concatenate values when 'string' format is used
15-
required: true
15+
required: false
1616
default: ','
1717
follow-symbolic-links:
1818
description: Indicates whether to follow symbolic links when resolving `path`
19-
required: true
19+
required: false
2020
default: 'false'
2121
outputs:
2222
list:

.github/actions/reports-group/load-metadata-action/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ inputs:
77
required: true
88
format:
99
description: string (default) or json
10-
required: true
10+
required: false
1111
default: 'string'
1212
glue-string:
1313
description: String used to concatenate values when 'string' format is used (default to comma)
14-
required: true
14+
required: false
1515
default: ','
1616
follow-symbolic-links:
1717
description: Indicates whether to follow symbolic links when resolving `path`
18-
required: true
18+
required: false
1919
default: 'false'
2020

2121
outputs:

.github/workflows/codacy-upload-from-artifacts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
description: |
1212
The id of the workflow run where the artifacts were uploaded from (default to current run).
1313
In case artefacts have been uploadded from another run, this input must be filled with original workflow run id !
14-
required: true
14+
required: false
1515
type: string
1616
default: "${{ github.run_id }}"
1717
override-commit:
@@ -22,7 +22,7 @@ on:
2222
type: string
2323
follow-symbolic-links:
2424
description: Indicates whether to follow symbolic links when resolving groups path
25-
required: true
25+
required: false
2626
type: boolean
2727
default: false
2828

.github/workflows/codecov-upload-from-artifacts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
description: |
1212
The id of the workflow run where the artifacts were uploaded from (default to current run).
1313
In case artefacts have been uploadded from another run, this input must be filled with original workflow run id !
14-
required: true
14+
required: false
1515
type: string
1616
default: "${{ github.run_id }}"
1717
override-commit:
@@ -62,7 +62,7 @@ on:
6262
description: |
6363
Indicates whether to follow symbolic links when resolving glob path.
6464
When looking for group directory for instance.
65-
required: true
65+
required: false
6666
type: boolean
6767
default: false
6868
secrets:

.github/workflows/coverage-upload.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: ./.github/workflows/codacy-upload-from-artifacts.yml
3636
with:
3737
artifacts-pattern: coverage-groups-*
38-
run-id: ${{ needs.fetch-info.outputs.id }}
38+
run-id: ${{ needs.fetch-info.outputs.run-id }}
3939
override-commit: ${{ needs.fetch-info.outputs.commit-sha }}
4040
permissions:
4141
contents: read
@@ -49,7 +49,7 @@ jobs:
4949
uses: ./.github/workflows/codecov-upload-from-artifacts.yml
5050
with:
5151
artifacts-pattern: coverage-groups-*
52-
run-id: ${{ needs.fetch-info.outputs.id }}
52+
run-id: ${{ needs.fetch-info.outputs.run-id }}
5353
override-commit: ${{ needs.fetch-info.outputs.commit-sha }}
5454
permissions:
5555
contents: read

0 commit comments

Comments
 (0)