Drop timezone settings from Blueprint #138
Workflow file for this run
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 Blueprint YAML | |
| # yamllint disable-line rule:truthy | |
| on: | |
| pull_request: | |
| paths: | |
| - "nspanel_easy_blueprint.yaml" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| code_scan: | |
| name: Validate Blueprint YAML | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: '0' | |
| - name: Validate nspanel_easy_blueprint.yaml | |
| run: yamllint -c "./.rules/yamllint.yml" nspanel_easy_blueprint.yaml | |
| ... |