From ad81cfaa2bbecbf6ba70a5d9eb86b5e89513c656 Mon Sep 17 00:00:00 2001 From: Shubham9t9 Date: Thu, 19 Oct 2023 12:27:42 +0530 Subject: [PATCH] skip validation for release PRs --- .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"