From 294acf0236cdc76630240aeac48b2026ca7f87ba Mon Sep 17 00:00:00 2001 From: willdavsmith Date: Fri, 26 Jan 2024 10:54:38 -0800 Subject: [PATCH] PR Comments Signed-off-by: willdavsmith --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c6efe4a5d29..6bee1b738d9 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -177,10 +177,10 @@ jobs: }) if (data.name == '${{ steps.get-version.outputs.release-branch-name }}' && context.ref == 'refs/heads/main' && context.eventName == 'push' { - echo "Release branch ${{ steps.get-version.outputs.release-branch-name }} already exists." + echo "Release branch ${{ steps.get-version.outputs.release-branch-name }} already exists and the event is push to main branch." return 'true' } else { - echo "Release branch ${{ steps.get-version.outputs.release-branch-name }} does not exist." + echo "Release branch ${{ steps.get-version.outputs.release-branch-name }} does not exist or the event is not push to main branch." return 'false' } - name: Generate release summary