Skip to content

Commit

Permalink
add quotes around strings
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmrdavid authored Apr 11, 2024
1 parent 7110642 commit 983a94c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/guarantee-release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 983a94c

Please sign in to comment.