You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logging.info(f"Groups to be deleted: {full_paths}")
101
99
forgroupingl.groups.list():
102
100
103
101
# skip deletion of a descendant group to prevent scenarios where parent group gets deleted leaving a dangling descendant whose deletion will throw 404s.
104
102
# descendant groups cannot contain the `/` special character: https://docs.gitlab.com/ee/user/reserved_names.html#limitations-on-project-and-group-names
105
103
if"/"ingroup.full_path:
106
104
logging.info(
107
-
f"Skipping deletion of {group.full_path} as it is a descendant group"
105
+
f"Skipping deletion of {group.full_path} as it is a descendant group and will be removed when the parent group is deleted"
0 commit comments