Skip to content

Commit 35990bf

Browse files
author
Petr Sramek
committed
fixed condition
1 parent f74d9c2 commit 35990bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/format-cs-files.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
dotnet format style
4747
dotnet format analyzers --no-restore --diagnostics IDE0073 --verbosity diagnostic
4848
name: Apply style formatting and file header rule
49-
if: ${{ steps.validate.output.has-changes != true }}
49+
if: ${{ steps.validate.output.has-changes != 'true' }}
5050
working-directory: ${{ github.workspace }}
5151
- run: |
5252
git add .
@@ -56,5 +56,5 @@ jobs:
5656
git pull origin ${{ github.ref }}
5757
git push origin ${{ github.ref }}
5858
name: Push style formatting and file header rule to ${{ github.ref }}
59-
if: ${{ steps.validate.output.has-changes != true }}
59+
if: ${{ steps.validate.output.has-changes != 'true' }}
6060
working-directory: ${{ github.workspace }}

0 commit comments

Comments
 (0)