Merge pull request #3 from 33Fraise33/fix/noninteractive-ci-validation #3
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
| --- | |
| # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
| name: GitHub workflow validation | |
| on: | |
| pull_request: | |
| paths: | |
| - .github/workflows/** | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - .github/workflows/** | |
| permissions: | |
| contents: read | |
| jobs: | |
| actionlint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4 | |
| - name: Validate GitHub Actions workflows | |
| uses: docker://rhysd/actionlint@sha256:ef8299f97635c4c30e2298f48f30763ab782a4ad2c95b744649439a039421e36 | |
| with: | |
| args: -color |