Added ContentTypeOwnedBySomeoneElseException for content type draft owned by another user #313
This file contains hidden or 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 PHP | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - '[0-9]+.[0-9]+' | |
| pull_request: ~ | |
| jobs: | |
| rector: | |
| name: Run rector | |
| runs-on: "ubuntu-22.04" | |
| strategy: | |
| matrix: | |
| php: | |
| - '8.3' | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: ibexa/gh-workflows/actions/composer-install@main | |
| with: | |
| gh-client-id: ${{ secrets.AUTOMATION_CLIENT_ID }} | |
| gh-client-secret: ${{ secrets.AUTOMATION_CLIENT_SECRET }} | |
| satis-network-key: ${{ secrets.SATIS_NETWORK_KEY }} | |
| satis-network-token: ${{ secrets.SATIS_NETWORK_TOKEN }} | |
| - name: Run rector | |
| run: vendor/bin/rector process --dry-run --ansi |