Lines Matching +full:- +full:- +full:no +full:- +full:interaction
1 name: "Auto-Fix code"
5 - master
10 runs-on: ubuntu-latest
12 - name: Checkout
15 fetch-depth: 0
17 - name: Setup PHP
18 uses: shivammathur/setup-php@v2
20 php-version: '8.2'
22 - name: Install tools
25 composer install --no-interaction --no-progress --no-suggest --prefer-dist
27 - name: Setup Cache
30 path: _test/.rector-cache
31 key: ${{ runner.os }}-rector-${{ hashFiles('_test/rector.php') }}
33 - name: Run Rector
34 run: ./_test/vendor/bin/rector process --config _test/rector.php --no-diffs
36 - name: Run PHP CodeSniffer autofixing
37 continue-on-error: true # even if not all errors are fixed, we want to create a PR
38 run: ./_test/vendor/bin/phpcbf --standard=_test/phpcs_MigrationAdjustments.xml
40 - name: Create Pull Request
41 uses: peter-evans/create-pull-request@v6
43 commit-message: " Rector and PHPCS fixes"
48 …erging. Please note that unit tests are not run for automated pull requests - so if in doubt, manu…
50 … yourself and create a new pull request. This PR automatically closes when no more changes are sug…
51 delete-branch: true