You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the enhancement
The actions runner is planned to support two new commands to finely-grain control the echo-ing of logging commands: ::echo::off and ::echo::on.
This issue tracks leveraging the echo command where it's most convenient.
Code Snippet
The following actions workflow snippet:
- name: Run a multi-line scriptrun: | echo "::warning::This is a warning with default echo behavior off" echo "Setting echo to on" echo "::echo::on" echo "::warning::This is a warning with echo on" echo "Now, setting echo to off" echo "::echo::off"
...will produce the following output:
2019-10-23T17:47:03.6909317Z ##[warning]This is a warning with default echo behavior off
2019-10-23T17:47:03.6916653Z Setting echo to on
2019-10-23T17:47:03.6919213Z ::echo::on
2019-10-23T17:47:03.6919717Z ##[warning]This is a warning with echo on
2019-10-23T17:47:03.6920195Z ::warning::This is a warning with echo on
2019-10-23T17:47:03.6920396Z Now, setting echo to off
2019-10-23T17:47:03.7986205Z ##[warning]This is a warning with echo off
Additional information
N/A
The text was updated successfully, but these errors were encountered:
Describe the enhancement
The actions runner is planned to support two new commands to finely-grain control the echo-ing of logging commands:
::echo::off
and::echo::on
.This issue tracks leveraging the echo command where it's most convenient.
Code Snippet
The following actions workflow snippet:
...will produce the following output:
Additional information
N/A
The text was updated successfully, but these errors were encountered: