[WIP] tv less file provider #26708
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rector | |
on: | |
pull_request: null | |
jobs: | |
rector: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
timeout-minutes: 8 | |
if: github.event.pull_request.head.repo.full_name == 'rectorphp/rector-src' | |
steps: | |
- | |
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 }}" | |
- | |
uses: shivammathur/setup-php@v2 | |
with: | |
# PHP 8.2 is required, so Rector's code is PHP 8.2 compatible even after refactoring | |
php-version: 8.2 | |
coverage: none | |
- 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 | |
- run: bin/rector process --ansi | |
- | |
# commit only to core contributors who have repository access | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: '[ci-review] Rector Rectify' | |
commit_author: 'GitHub Action <[email protected]>' | |
commit_user_email: '[email protected]' |