File info comment header updates #2
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 contents | |
| on: | |
| workflow_dispatch: # manual trigger | |
| push: | |
| paths: | |
| - "examples/**/*.h*" | |
| - "examples/**/*.c*" | |
| - "plugin_*/**/*.c*" | |
| - "plugin_*/**/*.h*" | |
| - "plugin_*/**/*.c*" | |
| - "shared/**/*.h*" | |
| - "shared/**/*.c*" | |
| pull_request: | |
| paths: | |
| - "examples/**/*.h*" | |
| - "examples/**/*.c*" | |
| - "plugin_*/**/*.c*" | |
| - "plugin_*/**/*.h*" | |
| - "plugin_*/**/*.c*" | |
| - "shared/**/*.h*" | |
| - "shared/**/*.c*" | |
| jobs: | |
| Validate_contents: | |
| name: Validate contents | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Check files | |
| run: node .github/workflows/scripts/Validate_Contents.js |