-
-
Notifications
You must be signed in to change notification settings - Fork 63
47 lines (38 loc) · 1.33 KB
/
rector.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Rector
on:
pull_request: null
jobs:
rector:
strategy:
fail-fast: false
matrix:
paths:
- src tests
- rules
- config utils
runs-on: ubuntu-latest
timeout-minutes: 8
if: github.event.pull_request.head.repo.full_name == 'sabbelasichon/typo3-rector'
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
# Must be used to trigger workflow after push
token: ${{ secrets.ACCESS_TOKEN }}
- run: echo "run on ${{ github.event.pull_request.head.repo.full_name }}"
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
# PHP 7.4 is required, so Rector's code is PHP 7.4 compatible even after refactoring
php-version: 7.4
coverage: none
- name: Install Composer dependencies
run: composer install --no-progress --ansi
## First run Rector - here can't be --dry-run !!! it would stop the job with it and not commit anything in the future
- name: Run Rector
run: vendor/bin/rector process ${{ matrix.paths }} --ansi
- name: Auto commit changes
# commit only to core contributors who have repository access
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: '[ci-review] Rector Rectify'