diff options
author | John Westcott IV <john.westcott.iv@redhat.com> | 2023-01-25 23:12:43 +0100 |
---|---|---|
committer | John Westcott IV <john.westcott.iv@redhat.com> | 2023-01-25 23:12:43 +0100 |
commit | c26d211ee0f060e22ce1bb3f1a5f220603856826 (patch) | |
tree | ba7face67024a8f87d57c1b6f7a733c3d8c69bab /.github/workflows/pr_body_check.yml | |
parent | Merge pull request #13461 from john-westcott-iv/no_galaxy_if_published (diff) | |
download | awx-c26d211ee0f060e22ce1bb3f1a5f220603856826.tar.xz awx-c26d211ee0f060e22ce1bb3f1a5f220603856826.zip |
Nominal change to the pr body check
Diffstat (limited to '.github/workflows/pr_body_check.yml')
-rw-r--r-- | .github/workflows/pr_body_check.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/pr_body_check.yml b/.github/workflows/pr_body_check.yml index 90520c7e92..7ddcabd3d6 100644 --- a/.github/workflows/pr_body_check.yml +++ b/.github/workflows/pr_body_check.yml @@ -17,9 +17,9 @@ jobs: env: PR_BODY: ${{ github.event.pull_request.body }} run: | - echo $PR_BODY | grep "Bug, Docs Fix or other nominal change" > Z - echo $PR_BODY | grep "New or Enhanced Feature" > Y - echo $PR_BODY | grep "Breaking Change" > X + echo "$PR_BODY" | grep "Bug, Docs Fix or other nominal change" > Z + echo "$PR_BODY" | grep "New or Enhanced Feature" > Y + echo "$PR_BODY" | grep "Breaking Change" > X exit 0 # We exit 0 and set the shell to prevent the returns from the greps from failing this step # See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#exit-codes-and-error-action-preference |