From 2f56c73b473ae131279c472f94252aa0a02071e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 6 Dec 2023 16:15:42 +0100 Subject: [PATCH] pending-script: add @ before username --- pkgs/pending-reviews/script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/pending-reviews/script.sh b/pkgs/pending-reviews/script.sh index 32af6a34..e5960b18 100644 --- a/pkgs/pending-reviews/script.sh +++ b/pkgs/pending-reviews/script.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -euo pipefail -display_pr() { jq -r '.[] | "- \(.url) | \(.title) from \(.user.login)"'; } +display_pr() { jq -r '.[] | "- \(.url) | \(.title) from @\(.user.login)"'; } echo "# Review needed" curl -s 'https://git.clan.lol/api/v1/repos/clan/clan-core/pulls?state=closed&sort=leastupdate&labels=8' | display_pr