Detect REQUIRED_ARG_ADDED when the old field had no prior arguments #1052
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: autofix.ci # needed to securely identify the workflow by the action | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| autofix: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| coverage: none | |
| extensions: mbstring | |
| php-version: "8.3" | |
| - uses: ramsey/composer-install@v4 | |
| - run: composer normalize | |
| - run: make php-cs-fixer | |
| - run: composer docs | |
| - run: npx --yes prettier --write --tab-width=2 '*.md' '**/*.md' | |
| - uses: autofix-ci/action@v1 | |
| with: | |
| commit-message: Autofix |