Skip to content

Commit 3907510

Browse files
committed
use notice, not warning, for unsupported formats
1 parent ce2108e commit 3907510

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,9 @@ def _update_workflow(self, workflow_path: str) -> set[str]:
152152
# we only need `user/repo` part from action_repository
153153
action_repository = "/".join(action_location.split("/")[:2])
154154
except ValueError:
155-
gha_utils.warning(
156-
f'Action "{action}" is in a wrong format, '
157-
"We only support community actions currently"
155+
gha_utils.notice(
156+
f'Action "{action}" is in an unsupported format. '
157+
"We only support community actions currently."
158158
)
159159
continue
160160

0 commit comments

Comments
 (0)