diff options
author | Rhys Arkins <[email protected]> | 2024-12-20 15:21:13 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2024-12-20 14:21:13 +0000 |
commit | c69df699dab74df010de1e6306d8b6ab7b994574 (patch) | |
tree | a23d4881ca21c464087eeb0627415cfa2a753f99 | |
parent | 1743d814489307a2879bf34f685fd9e95b9874d3 (diff) | |
download | renovate-c69df699dab74df010de1e6306d8b6ab7b994574.tar.gz renovate-c69df699dab74df010de1e6306d8b6ab7b994574.zip |
chore: use redirects for missing labels issue (#33221)
-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') |