Skip to content

Commit

Permalink
Fix 239: Invalid workflow file (#240)
Browse files Browse the repository at this point in the history
Fixes #239 by using GitHub flavored yaml syntax for an in-line conditional.
  • Loading branch information
pythoninthegrass committed Jan 8, 2024
1 parent a584703 commit 20fb351
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ Example usage:
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- name: feedback
if: steps.automerge.outputs.mergeResult == "merged"
if: ${{ steps.automerge.outputs.mergeResult == 'merged' }}
run: |
echo "Pull request ${{ steps.automerge.outputs.pullRequestNumber }} merged!"
```
Expand Down

0 comments on commit 20fb351

Please sign in to comment.