aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rwxr-xr-xdev/tools/github-check-prs.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/dev/tools/github-check-prs.py b/dev/tools/github-check-prs.py
index 7c9043e63..beb26d910 100755
--- a/dev/tools/github-check-prs.py
+++ b/dev/tools/github-check-prs.py
@@ -38,8 +38,10 @@ for pull in repo.get_pulls():
labelled = True
if labelled and not dirty:
print ("PR #" + str(pull.number) + " is not dirty but is labelled")
+ print ("("+ pull.html_url +")")
elif dirty and not labelled:
print ("PR #" + str(pull.number) + " is dirty and not labelled")
+ print ("("+ pull.html_url +")")
else:
# give some feedback so the user can see we didn't crash
print ("PR #" + str(pull.number) + " OK")