diff options
-rwxr-xr-x | tools/find-issues-with-missing-labels.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/find-issues-with-missing-labels.sh b/tools/find-issues-with-missing-labels.sh index 26bdc15eadc..3fe03b89a4f 100755 --- a/tools/find-issues-with-missing-labels.sh +++ b/tools/find-issues-with-missing-labels.sh @@ -27,7 +27,7 @@ for FILTER in "$TYPE_LABELS_FILTER" "$PRIORITY_LABELS_FILTER"; do HAS_ISSUES_MISSING_LABELS=true # Create a list of issue numbers - FORMATTED_OUTPUT=$(echo "$ISSUES_MISSING_LABEL" | jq -r '.[].number' | sed 's/^/- #/') + FORMATTED_OUTPUT=$(echo "$ISSUES_MISSING_LABEL" | jq -r '.[].number' | sed 's/^/- https:\/\/redirect.github.com\/renovatebot\/renovate\/issues\//') # Count the issues and decide if the output should be singular or plural ISSUE_COUNT=$(echo "$ISSUES_MISSING_LABEL" | jq '. | length') |