Skip to content

Commit

Permalink
chore: use == instead of =
Browse files Browse the repository at this point in the history
  • Loading branch information
dantetemplar committed Aug 12, 2024
1 parent e581e51 commit 01f451f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/listen-swagger-changes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
updated: ${{ steps.check.outputs.updated }}
version: ${{ steps.check.outputs.version }}
run: |
if [ "$updated" = "true" ]; then
if [ "$updated" == "true" ]; then
echo "New Swagger UI version: $version"
git config --global user.email "[email protected]"
git config --global user.name "Automated Swagger UI update"
Expand Down

0 comments on commit 01f451f

Please sign in to comment.