From 8bb67873e50931e347e58a95bfb822ea4e3572a6 Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Wed, 25 Mar 2026 09:30:02 -0400 Subject: jira-CR.php: Show failed tests and tickets without PR's --- .local/bin/jira-codereview | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '.local/bin/jira-codereview') diff --git a/.local/bin/jira-codereview b/.local/bin/jira-codereview index 9fbdfc3..3b10c10 100755 --- a/.local/bin/jira-codereview +++ b/.local/bin/jira-codereview @@ -9,7 +9,9 @@ if test "$ticket"; then echo "Reviewing $ticket ..." # ugh #xdg-open https://proactivedealersolutions.atlassian.net/browse/$ticket - xdg-open "https://github.com/pulls?q=is%3Aopen+is%3Apr+user%3ABetterCarPeople+$ticket" + if ! test "$2" = "noopen"; then + xdg-open "https://github.com/pulls?q=is%3Aopen+is%3Apr+user%3ABetterCarPeople+$ticket" + fi #xdg-open "https://github.com/search?q=is%3Aopen+is%3Apr+org%3ABetterCarPeople+$ticket" else exit 1; -- cgit 1.4.1