Merge pull request #55332 from zzak/re-54882 #1
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: Devcontainer Shellcheck | |
| on: | |
| pull_request: | |
| paths: | |
| - ".devcontainer/**/*.sh" | |
| push: | |
| paths: | |
| - ".devcontainer/**/*.sh" | |
| permissions: | |
| contents: read | |
| jobs: | |
| devcontainer_shellcheck: | |
| name: Devcontainer Shellcheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout (GitHub) | |
| uses: actions/checkout@v5 | |
| - name: Lint Devcontainer Scripts | |
| run: | | |
| find .devcontainer/ -name '*.sh' -print0 | xargs -0 shellcheck |