build(deps-dev): bump @typescript-eslint/parser from 8.58.1 to 8.58.2 #85
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
| # >>> SLOP <<< | |
| # Generated by OpenAI GPT-5.2 Codex | |
| name: Block dist changes | |
| on: | |
| pull_request: | |
| jobs: | |
| dist-changes: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Fail on dist changes | |
| shell: bash | |
| run: | | |
| changed=$(git diff --name-only "origin/${{ github.base_ref }}...HEAD" -- dist/) | |
| if [ -n "$changed" ]; then | |
| echo "::error::Changes under dist/ are not allowed in PRs. Files under dist/ are updated by CI and don't need to be committed." | |
| echo "$changed" | |
| exit 1 | |
| fi |