From 983a94c4f11d7290ccc03e2ada01ed51271a5b61 Mon Sep 17 00:00:00 2001 From: David Justo Date: Wed, 10 Apr 2024 22:41:39 -0700 Subject: [PATCH] add quotes around strings --- .github/workflows/guarantee-release-notes.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/guarantee-release-notes.yml b/.github/workflows/guarantee-release-notes.yml index 8e5809e9f..5f70d9fd4 100644 --- a/.github/workflows/guarantee-release-notes.yml +++ b/.github/workflows/guarantee-release-notes.yml @@ -27,8 +27,8 @@ jobs: run: | Write-Host "Checking for changes in release_notes.md..." - $latestCommitInPR = ${{ github.sha }} - $latestCommitInTargetBranch = ${{ github.event.before }} + $latestCommitInPR = "${{ github.sha }}" + $latestCommitInTargetBranch = "${{ github.event.before }}" # Get list of files changed in this PR $changedFiles = git diff --name-only latestCommitInTargetBranch $latestCommitInPR