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
Prints a debug message to the log. You must create a secret named `ACTIONS_STEP_DEBUG` with the value `true` to see the debug messages set by this command in the log. For more information, see "[Enabling debug logging](/actions/managing-workflow-runs/enabling-debug-logging)."
152
152
153
-
```plaintext{:copy}
153
+
```{:copy}
154
154
::debug::{message}
155
155
```
156
156
@@ -178,7 +178,7 @@ Write-Output "::debug::Set the Octocat variable"
178
178
179
179
Creates a notice message and prints the message to the log. {% data reusables.actions.message-annotation-explanation %}
Creates an expandable group in the log. To create a group, use the `group` command and specify a `title`. Anything you print to the log between the `group` and `endgroup` commands is nested inside an expandable entry in the log.
263
263
264
-
```plaintext{:copy}
264
+
```{:copy}
265
265
::group::{title}
266
266
::endgroup::
267
267
```
@@ -304,7 +304,7 @@ jobs:
304
304
305
305
## Masking a value in log
306
306
307
-
```plaintext{:copy}
307
+
```{:copy}
308
308
::add-mask::{value}
309
309
```
310
310
@@ -368,7 +368,7 @@ jobs:
368
368
369
369
Stops processing any workflow commands. This special command allows you to log anything without accidentally running a workflow command. For example, you could stop logging to output an entire script that has comments.
370
370
371
-
```plaintext{:copy}
371
+
```{:copy}
372
372
::stop-commands::{endtoken}
373
373
```
374
374
@@ -380,7 +380,7 @@ To stop the processing of workflow commands, pass a unique token to `stop-comman
380
380
381
381
{% endwarning %}
382
382
383
-
```plaintext{:copy}
383
+
```{:copy}
384
384
::{endtoken}::
385
385
```
386
386
@@ -433,7 +433,7 @@ jobs:
433
433
434
434
Enables or disables echoing of workflow commands. For example, if you use the `set-output` command in a workflow, it sets an output parameter but the workflow run's log does not show the command itself. If you enable command echoing, then the log shows the command, such as `::set-output name={name}::{value}`.
435
435
436
-
```plaintext{:copy}
436
+
```{:copy}
437
437
::echo::on
438
438
::echo::off
439
439
```
@@ -484,7 +484,7 @@ jobs:
484
484
485
485
The example above prints the following lines to the log:
486
486
487
-
```plaintext{:copy}
487
+
```{:copy}
488
488
::set-output name=action_echo::enabled
489
489
::echo::off
490
490
```
@@ -617,7 +617,7 @@ steps:
617
617
618
618
For multiline strings, you may use a delimiter with the following syntax.
0 commit comments