From 564303d342f059b76a757a86ccb33692043c7a45 Mon Sep 17 00:00:00 2001 From: Luis Felipe Dominguez Vega <5604131+lfdominguez@users.noreply.github.com> Date: Wed, 18 Sep 2024 14:29:05 -0300 Subject: [PATCH] docs: add required title parameter to message command (#34465) --- .../workflow-commands-for-github-actions.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/content/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions.md b/content/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions.md index b708f33886de..22ea1f600e9c 100644 --- a/content/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions.md +++ b/content/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions.md @@ -159,7 +159,7 @@ echo "::notice file=app.js,line=1,col=5,endColumn=7::Missing semicolon" {% powershell %} ```powershell copy -Write-Output "::notice file=app.js,line=1,col=5,endColumn=7::Missing semicolon" +Write-Output "::notice file=app.js,line=1,col=5,endColumn=7,title=YOUR-TITLE::Missing semicolon" ``` {% endpowershell %} @@ -179,7 +179,7 @@ Creates a warning message and prints the message to the log. {% data reusables.a {% bash %} ```bash copy -echo "::warning file=app.js,line=1,col=5,endColumn=7::Missing semicolon" +echo "::warning file=app.js,line=1,col=5,endColumn=7,title=YOUR-TITLE::Missing semicolon" ``` {% endbash %} @@ -187,7 +187,7 @@ echo "::warning file=app.js,line=1,col=5,endColumn=7::Missing semicolon" {% powershell %} ```powershell copy -Write-Output "::warning file=app.js,line=1,col=5,endColumn=7::Missing semicolon" +Write-Output "::warning file=app.js,line=1,col=5,endColumn=7,title=YOUR-TITLE::Missing semicolon" ``` {% endpowershell %} @@ -207,7 +207,7 @@ Creates an error message and prints the message to the log. {% data reusables.ac {% bash %} ```bash copy -echo "::error file=app.js,line=1,col=5,endColumn=7::Missing semicolon" +echo "::error file=app.js,line=1,col=5,endColumn=7,title=YOUR-TITLE::Missing semicolon" ``` {% endbash %} @@ -215,7 +215,7 @@ echo "::error file=app.js,line=1,col=5,endColumn=7::Missing semicolon" {% powershell %} ```powershell copy -Write-Output "::error file=app.js,line=1,col=5,endColumn=7::Missing semicolon" +Write-Output "::error file=app.js,line=1,col=5,endColumn=7,title=YOUR-TITLE::Missing semicolon" ``` {% endpowershell %}