Skip to content

Commit

Permalink
Nearly there! Make the comparison a string comparison to evaluate pro…
Browse files Browse the repository at this point in the history
…perly
  • Loading branch information
willGraham01 committed Mar 27, 2024
1 parent e0b6a05 commit 3acd408
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/fetch_sha.yml
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ jobs:
with:
result-encoding: string
script: |
if (${{ needs.check-if-pr-comment.outputs.is-pr-comment }} == "true") {
if ("${{ needs.check-if-pr-comment.outputs.is-pr-comment }}" === "true") {
const { data: pr } = await github.rest.pulls.get({
owner: context.issue.owner,
repo: context.issue.repo,

0 comments on commit 3acd408

Please sign in to comment.