https://github.com/pietrzakadrian/rector-github-action
https://github.com/pietrzakadrian/rector-github-action
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pietrzakadrian/rector-github-action
- Owner: pietrzakadrian
- Created: 2023-05-21T22:57:44.000Z (over 2 years ago)
- Default Branch: development
- Last Pushed: 2023-06-26T22:48:53.000Z (over 2 years ago)
- Last Synced: 2025-02-09T15:15:05.932Z (8 months ago)
- Language: Dockerfile
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Rector GitHub Action
Implementation [Rector](https://github.com/rectorphp/rector) for GitHub Actions.
### Example
- Contents of file `.github/workflows/rector.yml`:
```yml
name: rector
on: [push]
jobs:
rector:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3- name: Rector
uses: pietrzakadrian/rector-github-action@v0.0.4
with:
directories: src #directories path
config: rector.php #configuration file
```### Reason for making
- [zingimmick/rector-action](https://github.com/zingimmick/rector-action) is deprecated and not working.