rector/templates/rector-github-action-check.yaml
Tomas Votruba 75a9f9ecc8 Updated Rector to commit af52640505b505f3932f20f867db6d9eedeba222
af52640505 Use  stefanzweifel/git-auto-commit-action on templates (#3427)Co-authored-by: Tomas Votruba <tomas.vot@gmail.com>
2023-02-28 17:44:40 +00:00

42 lines
1.2 KiB
YAML

# github action that checks code with Rector
name: Rector
on:
pull_request: null
jobs:
rector:
# Don't run on forks.
if: github.repository == '__CURRENT_REPOSITORY__'
runs-on: ubuntu-latest
steps:
-
uses: actions/checkout@v3
with:
# needed to trigger workflow after push
token: ${{ secrets.ACCESS_TOKEN }}
-
uses: shivammathur/setup-php@v2
with:
php-version: __PHP_VERSION__
coverage: none
- uses: "ramsey/composer-install@v2"
## here can't be --dry-run, it would stop the job
- run: vendor/bin/rector --ansi
# see https://github.com/EndBug/add-and-commit
-
# commit only to core contributors who have repository access
if: github.event.pull_request.head.repo.full_name == github.repository
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: '[rector] Rector fixes'
commit_author: 'GitHub Action <actions@github.com>'
commit_user_email: 'action@github.com'