Skip to content

[post] easy declare coverage #1183

[post] easy declare coverage

[post] easy declare coverage #1183

Workflow file for this run

name: Rector
on:
pull_request: null
jobs:
rector:
# run only on core developers with access
if: github.event.pull_request.head.repo.full_name == github.repository
runs-on: ubuntu-latest
steps:
-
uses: actions/checkout@v2
with:
token: ${{ secrets.ACCESS_TOKEN }}
-
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
- uses: "ramsey/composer-install@v1"
## First run Rector - here can't be --dry-run !!! it would stop the job with it and not commit anything in the future
- run: vendor/bin/rector process ${{ matrix.directories }} --ansi
- run: vendor/bin/ecs check --fix --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: EndBug/add-and-commit@v7.0.0
with:
# The arguments for the `git add` command (see the paragraph below for more info)
add: .
message: "[ci-review] Rector Rectify"
author_name: "GitHub Action"
author_email: "action@github.com"
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}