Skip to content

build(deps-dev): bump @typescript-eslint/parser from 8.58.1 to 8.58.2 #85

build(deps-dev): bump @typescript-eslint/parser from 8.58.1 to 8.58.2

build(deps-dev): bump @typescript-eslint/parser from 8.58.1 to 8.58.2 #85

Workflow file for this run

# >>> 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