Skip to content

Commit fe1f2a5

Browse files
author
Petr Sramek
committed
fixed condition issue
1 parent 6e94638 commit fe1f2a5

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
@@ -45,7 +45,7 @@ jobs:
4545
dotnet format style
4646
dotnet format analyzers --no-restore --diagnostics IDE0073 --verbosity diagnostic
4747
name: Apply style formatting and file header rule
48-
if: ${{ steps.validate.outputs.has-changes != 'true' }}
48+
if: ${{ steps.validate.outputs.has-changes != true }}
4949
working-directory: ${{ github.workspace }}
5050
- run: |
5151
git add .
@@ -55,5 +55,5 @@ jobs:
5555
git pull origin ${{ github.ref }}
5656
git push origin ${{ github.ref }}
5757
name: Push style formatting and file header rule to ${{ github.ref }}
58-
if: ${{ steps.validate.output.has-changes != 'true' }}
58+
if: ${{ steps.validate.output.has-changes != true }}
5959
working-directory: ${{ github.workspace }}

0 commit comments

Comments
 (0)