From 2bd04d6c18e4af9c7a081f8df059ed414a1d7fa0 Mon Sep 17 00:00:00 2001 From: Ashutosh Gangwar Date: Thu, 28 Jul 2022 08:22:29 +0530 Subject: [PATCH] add Noticef() to actions_root.go resolves https://github.com/sethvargo/go-githubactions/issues/47 --- actions_root.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/actions_root.go b/actions_root.go index f6c81be..f8c25a9 100644 --- a/actions_root.go +++ b/actions_root.go @@ -104,6 +104,12 @@ func Debugf(msg string, args ...any) { defaultAction.Debugf(msg, args...) } +// Noticef prints a notice-level message. The arguments follow the standard +// Printf arguments. +func Noticef(msg string, args ...any) { + defaultAction.Noticef(msg, args...) +} + // Errorf prints a error-level message. The arguments follow the standard Printf // arguments. func Errorf(msg string, args ...any) {