From fd05b487f1a413f688d50bae5f2ac330353e801e Mon Sep 17 00:00:00 2001 From: RahulGautamSingh <rahultesnik@gmail.com> Date: Thu, 13 Feb 2025 17:23:00 +0530 Subject: [PATCH] chore(fix): update issue body when all issues labelled correctly (#34208) --- tools/find-issues-with-missing-labels.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/find-issues-with-missing-labels.sh b/tools/find-issues-with-missing-labels.sh index 4d0868dd36..bcd1cc7c44 100755 --- a/tools/find-issues-with-missing-labels.sh +++ b/tools/find-issues-with-missing-labels.sh @@ -40,7 +40,6 @@ done if [ "$HAS_ISSUES_MISSING_LABELS" = false ]; then echo "All checked issues have labels. Exiting the action." ISSUE_BODY="$ISSUE_BODY All checked issues are correctly labeled.\n" - exit 0 fi LABEL_CHECK_ISSUE_EXISTS=$(gh search issues --repo $REPO --json "number,author,title" | jq --arg title "$ISSUE_TITLE" 'map(select(.title == $title and .author.type == "Bot"))') || { echo "Failed to fetch existing label check issue"; exit 1; } -- GitLab