We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f1148a commit 0005803Copy full SHA for 0005803
hugoalh.GitHubActionsToolkit.psm1
@@ -236,7 +236,7 @@ function Enter-GHActionsLogGroup {
236
param(
237
[Parameter(Mandatory = $true, Position = 0)][string]$Title
238
)
239
- Send-GHActionsCommand -Command 'group' -Message $Title
+ Write-GHActionsCommand -Command 'group' -Message $Title
240
}
241
<#
242
.SYNOPSIS
@@ -247,7 +247,7 @@ End an expandable group in the log.
247
function Exit-GHActionsLogGroup {
248
[CmdletBinding()]
249
param ()
250
- Send-GHActionsCommand -Command 'endgroup' -Message ''
+ Write-GHActionsCommand -Command 'endgroup' -Message ''
251
252
253
0 commit comments