From 74906bea83a0dbf6aaba2d00b732deb0c3aefd2d Mon Sep 17 00:00:00 2001 From: Eric Wieser Date: Wed, 11 Jan 2023 19:09:01 +0000 Subject: [PATCH] Add documentation for notice (#1105) * Add documentation for notice This is described in documentation elsewhere. * Update docs/commands.md Co-authored-by: Konrad Pabjan Co-authored-by: Konrad Pabjan --- docs/commands.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/commands.md b/docs/commands.md index 0edf2f07..8913fd1d 100644 --- a/docs/commands.md +++ b/docs/commands.md @@ -129,9 +129,12 @@ There are several commands to emit different levels of log output: | log level | example usage | |---|---| | [debug](action-debugging.md) | `echo "::debug::My debug message"` | +| notice | `echo "::notice::My notice message"` | | warning | `echo "::warning::My warning message"` | | error | `echo "::error::My error message"` | +Additional syntax options are described at [the workflow command documentation](https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-a-debug-message). + ### Command Echoing By default, the echoing of commands to stdout only occurs if [Step Debugging is enabled](./action-debugging.md#How-to-Access-Step-Debug-Logs)