Skip to content

Commit

Permalink
Fix escape character
Browse files Browse the repository at this point in the history
Signed-off-by: Y. Meyer-Norwood <[email protected]>
  • Loading branch information
norwd authored Nov 7, 2024
1 parent 431daaa commit e9b42d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ jobs:
signoff-on-commit: ${{ github.actor == github.repository_owner }}

# yamlfmt configuration
exclude-files: .github/testing/bad.yml
exclude-files: .github${{ contains(runner.temp, '\') && '\\' || '/' }}testing${{ contains(runner.temp, '\') && '\\' || '/' }}bad.yml
include-files: |
**${{ contains(runner.temp, '\') && '\' || '/' }}*.{yaml,yml}
.github${{ contains(runner.temp, '\') && '\' || '/' }}testing${{ contains(runner.temp, '\') && '\' || '/' }}nonexisting.yml
**${{ contains(runner.temp, '\') && '\\' || '/' }}*.{yaml,yml}
.github${{ contains(runner.temp, '\\') && '\' || '/' }}testing${{ contains(runner.temp, '\') && '\\' || '/' }}nonexisting.yml
test_that_fmtya_should_report_missing_yamlfmt_version:
if: always()
Expand Down

0 comments on commit e9b42d0

Please sign in to comment.