From c77e31a07010a5cf40924751be782e927bd3d801 Mon Sep 17 00:00:00 2001 From: Yoland Y <4950057+yoland68@users.noreply.github.com> Date: Wed, 10 Jul 2024 15:41:54 -0700 Subject: [PATCH] Add message --- action_yaml_checker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action_yaml_checker.py b/action_yaml_checker.py index 81778d1..371398c 100644 --- a/action_yaml_checker.py +++ b/action_yaml_checker.py @@ -107,7 +107,7 @@ def get_step_names( if len(unix_step_names) + len(wins_step_names) != len(step_names): uncategorized_steps = set(step_names) - set(unix_step_names + wins_step_names) - raise Exception("There steps are not categorized: {}".format(uncategorized_steps)) + raise Exception("There steps are not categorized: {}\nYou need to add [Win] or [Unix] and test by running python action_yaml_checker.py".format(uncategorized_steps)) tabulated_list = conditional_zip( unix_step_names, wins_step_names, step_name_extra_info_map, complete=complete