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 03fa80e commit 8b1c325Copy full SHA for 8b1c325
.github/scripts/check_labels.py
@@ -12,7 +12,10 @@
12
13
def delete_all_label_err_comments(pr: "GitHubPR") -> None:
14
for comment in pr.get_comments():
15
+ print(f"comment: {comment}")
16
if is_label_err_comment(comment):
17
+ print("is label err comment")
18
+ print(f"comment.database_id: {comment.database_id}")
19
gh_delete_comment(pr.org, pr.project, comment.database_id)
20
21
@@ -57,6 +60,7 @@ def main() -> None:
57
60
delete_all_label_err_comments(pr)
58
61
except Exception as e:
59
62
print("general exception")
63
+ print(e)
64
if args.exit_non_zero:
65
sys.exit(1)
66
0 commit comments