From 44bfe387b5c4306c9100b4ac305c4b5b589dcee5 Mon Sep 17 00:00:00 2001 From: Shubham Kumar <87755583+Shubham9t9@users.noreply.github.com> Date: Thu, 19 Oct 2023 16:45:36 +0530 Subject: [PATCH] skip validation for release PRs (#4128) Co-authored-by: Shubham9t9 --- .github/workflows/pr-issue-validator.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-issue-validator.yaml b/.github/workflows/pr-issue-validator.yaml index 0ca7060cc4f..55ee4691782 100644 --- a/.github/workflows/pr-issue-validator.yaml +++ b/.github/workflows/pr-issue-validator.yaml @@ -39,7 +39,7 @@ jobs: TITLE: ${{ github.event.pull_request.title }} run: | set -x - if [[ "$TITLE" == *"doc:"* || "$TITLE" == *"docs:"* || "$TITLE" == *"chore:"* ]]; then + if [[ "$TITLE" == *"doc:"* || "$TITLE" == *"docs:"* || "$TITLE" == *"chore:"* || "$TITLE" == *"release:"* || "$TITLE" == *"Release:"* ]]; then echo "Skipping validation as this is a PR for documentation or chore." gh pr edit $PRNUM --remove-label "PR:Issue-verification-failed" gh pr edit $PRNUM --add-label "PR:Ready-to-Review"