fix patch syntax for targeting fuel types in cryotanks cfg #7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Validate CFG Files | |
| on: | |
| workflow_call: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - '**.cfg' | |
| push: | |
| branches: [ "master" ] | |
| paths: | |
| - '**.cfg' | |
| jobs: | |
| validate-cfg-files: | |
| name: Validate CFG Files | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| sparse-checkout: | |
| GameData | |
| Extras | |
| - name: Validate config files | |
| uses: KSP-CKAN/KSPMMCfgParser@master |