We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e196b8 commit d966099Copy full SHA for d966099
utils/add_reading_vote.py
@@ -64,7 +64,10 @@ def main():
64
if reading:
65
print("Writing to agenda")
66
if not dry_run:
67
- agenda_list.write(" - type: Reading\n")
+ if vote_type == 'no-no':
68
+ agenda_list.write(" - type: No-No Reading\n")
69
+ else:
70
+ agenda_list.write(" - type: Reading\n")
71
agenda_list.write(" title: \"" + title + "\"\n")
72
agenda_list.write(" issue_number: " + str(issue_number) + "\n")
73
agenda_list.write(" pr_number: " + str(pr_number) + "\n")
0 commit comments