Skip to content

Commit

Permalink
skip validation for release PRs (#4128)
Browse files Browse the repository at this point in the history
Co-authored-by: Shubham9t9 <shubhamkumar47022@gmai.com>
  • Loading branch information
Shubham9t9 and Shubham9t9 committed Oct 19, 2023
1 parent cbe8383 commit 44bfe38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pr-issue-validator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 44bfe38

Please sign in to comment.