We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4705e3f commit d816e4fCopy full SHA for d816e4f
markdown_writer.py
@@ -47,8 +47,11 @@ def write_to_markdown(
47
f"### Original Commit Author: {original_commit_author} (Manager: {original_commit_author_manager})\n\n"
48
)
49
report_file.write("## Team Members that Own the Repo:\n")
50
- for member in team_members_that_own_the_repo:
51
- report_file.write(f"- {member}\n")
+ if team_members_that_own_the_repo:
+ for member in team_members_that_own_the_repo:
52
+ report_file.write(f"- {member}\n")
53
+ else:
54
+ report_file.write("No team members available.\n")
55
56
report_file.write("\n## All Contributors:\n")
57
for contributor in all_contributors:
0 commit comments