diff --git a/on_modify.py b/on_modify.py index b8663fd..4446fe1 100755 --- a/on_modify.py +++ b/on_modify.py @@ -48,7 +48,8 @@ def extract_tags_from(json_obj): tags = [json_obj['description']] if 'project' in json_obj: - tags.append(json_obj['project']) + for project in json_obj['project'].split('.'): + tags.append(project) if 'tags' in json_obj: if type(json_obj['tags']) is str: