Fixing incorrect extension of testwindowremoteagent entry

This commit is contained in:
Wietze 2023-10-03 17:12:12 +01:00
parent be18d9b26d
commit 52adf7084d
No known key found for this signature in database
GPG Key ID: E17630129FF993CF
2 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Check file extensions
run: if [[ $(find ./yml -type f -not -name "*.yml") ]]; then echo "Files with unexpected extension found, please ensure you use ".yml" (all lower case) for files in the yml/ folder."; exit 1; fi
run: if [[ $(find ./yml -type f -not -name "*.yml") ]]; then echo "Files with unexpected extension found, please ensure you use '.yml' (all lower case) for files in the yml/ folder."; exit 1; fi
- name: yaml-lint
uses: ibiqlik/action-yamllint@v3
with: