Skip to content

Commit 42cc70d

Browse files
committed
20220628A
1 parent af2483d commit 42cc70d

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

hugoalh.GitHubActionsToolkit/module/parameter.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Name of the inputs end with.
2222
.PARAMETER All
2323
Get all of the inputs.
2424
.PARAMETER EmptyStringAsNull
25-
Assume empty string of input's string as `$Null`.
25+
Assume empty string of input's value as `$Null`.
2626
.PARAMETER Trim
2727
Trim the input's value.
2828
.OUTPUTS

hugoalh.GitHubActionsToolkit/module/step-summary.psm1

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ Import-Module -Name @(
77
.SYNOPSIS
88
GitHub Actions - Add Step Summary (Raw)
99
.DESCRIPTION
10-
Add some GitHub flavored Markdown for step so that it will display on the summary page of a run; Can use to display and group unique content, such as test result summaries, so that viewing the result of a run does not need to go into the logs to see important information related to the run, such as failures. When a run's job finishes, the summaries for all steps in a job are grouped together into a single job summary and are shown on the run summary page. If multiple jobs generate summaries, the job summaries are ordered by job completion time.
10+
Add some GitHub flavored Markdown for step so that it will display on the summary page of a run; Can use to display and group unique content, such as test result summaries, so that viewing the result of a run does not need to go into the logs to see important information related to the run, such as failures.
11+
12+
When a run's job finishes, the summaries for all steps in a job are grouped together into a single job summary and are shown on the run summary page. If multiple jobs generate summaries, the job summaries are ordered by job completion time.
1113
.PARAMETER Value
1214
Content.
1315
.PARAMETER NoNewLine
@@ -68,7 +70,8 @@ Function Add-StepSummaryHeader {
6870
GitHub Actions - Add Step Summary Image
6971
.DESCRIPTION
7072
Add image for step so that it will display on the summary page of a run.
71-
IMPORTANT: No support reference image!
73+
74+
IMPORTANT: Not support reference image!
7275
.PARAMETER Uri
7376
Image URI.
7477
.PARAMETER Title
@@ -128,7 +131,8 @@ Set-Alias -Name 'Add-StepSummaryPicture' -Value 'Add-StepSummaryImage' -Option '
128131
GitHub Actions - Add Step Summary Link
129132
.DESCRIPTION
130133
Add link for step so that it will display on the summary page of a run.
131-
IMPORTANT: No support reference link!
134+
135+
IMPORTANT: Not support reference link!
132136
.PARAMETER Text
133137
Link text.
134138
.PARAMETER Uri

0 commit comments

Comments
 (0)