Skip to content

Commit 27820ee

Browse files
authored
Merge pull request #67 from ptmkenny/debug
use notice, not warning, for unsupported formats
2 parents 816cba0 + 3907510 commit 27820ee

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)