Lines Matching +full:cancel +full:- +full:in +full:- +full:progress
1 name: "Auto-Fix code"
5 - master
8 group: ${{ github.workflow }}-${{ github.ref }}
9 cancel-in-progress: true
14 runs-on: ubuntu-latest
16 - name: Checkout
19 fetch-depth: 0
21 - name: Setup PHP
22 uses: shivammathur/setup-php@v2
24 php-version: '8.2'
26 - name: Install tools
29 composer install --no-interaction --no-progress --no-suggest --prefer-dist
31 - name: Setup Cache
34 path: _test/.rector-cache
35 key: ${{ runner.os }}-rector-${{ hashFiles('_test/rector.php') }}
37 - name: Run Rector
38 run: ./_test/vendor/bin/rector process --config _test/rector.php --no-diffs
40 - name: Run PHP CodeSniffer autofixing
41 continue-on-error: true # even if not all errors are fixed, we want to create a PR
42 run: ./_test/vendor/bin/phpcbf --standard=_test/phpcs_MigrationAdjustments.xml
44 - name: Create Pull Request
45 uses: peter-evans/create-pull-request@v6
47 commit-message: " Rector and PHPCS fixes"
52 …g. Please note that unit tests are not run for automated pull requests - so if in doubt, manually …
55 delete-branch: true