mirror of
https://staging.allspice.dev/AllSpice-Demos/Actions-demo.git
synced 2025-04-23 17:03:42 +00:00
Add more debug statements
This commit is contained in:
parent
28525b67d1
commit
50fe8828fc
@ -78,12 +78,16 @@ design_review = DesignReview.request(allspice, args.repo_owner, args.repo_name,
|
||||
file_name = "design_review_comments.md"
|
||||
|
||||
comments = design_review.get_comments()
|
||||
with open(file_name, 'a') as f:
|
||||
f.write(f"{comments}")
|
||||
|
||||
for comment in comments:
|
||||
# write to file
|
||||
with open(file_name, 'a') as f:
|
||||
f.write(f"{comment}")
|
||||
# f.write(f"Comment: {comment.text}\n")
|
||||
f.write("\n")
|
||||
for thing in comment:
|
||||
# write to file
|
||||
with open(file_name, 'a') as f:
|
||||
f.write(f"{comment}")
|
||||
# f.write(f"Comment: {comment.text}\n")
|
||||
f.write("\n")
|
||||
|
||||
# Close file
|
||||
f.close()
|
||||
|
Loading…
Reference in New Issue
Block a user