Skip to content

Commit 823e963

Browse files
committed
Add missing types to sub-actions
1 parent 6fd40ca commit 823e963

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

generate-split-index-json/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ inputs:
88
split-total:
99
description: Total number of instances executing the tests (integer)
1010
required: true
11+
type: number
1112
outputs:
1213
split-total:
1314
description: Total number of instances executing the tests

merge-junit-reports/action.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,29 @@ inputs:
88
git-branch:
99
description: The Git branch in this repository to store the JUnit reports in (string)
1010
required: true
11+
type: string
1112
artifact-name:
12-
description: The artifact name for the merged JUnit reports of all test split jobs
13+
description: The artifact name for the merged JUnit reports of all test split jobs (string)
1314
required: true
15+
type: string
1416
split-artifact-pattern:
1517
description: The artifact name pattern used by the test split jobs, e.g. junit-xml-reports-* (string)
1618
required: true
19+
type: string
1720
split-artifact-delete-merged:
1821
description: Configures if the artifacts of the test split jobs should be deleted after the merge (boolean)
1922
required: false
23+
type: boolean
2024
default: true
2125
cleanup-junit-reports:
2226
description: Configures if the test output should be removed from the merged JUnit reports (boolean)
2327
required: false
28+
type: boolean
2429
default: true
2530
delete-old-junit-reports:
2631
description: Configures if the old JUnit reports in the Git branch should be deleted (boolean)
2732
required: false
33+
type: boolean
2834
default: true
2935
runs:
3036
using: composite

0 commit comments

Comments
 (0)