Merge pull request #7749 from kenjis/release-4.3.7 #60
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: Automatic Code Review | |
on: | |
pull_request: | |
paths: | |
- composer.json | |
- spark | |
- '**.php' | |
- .github/workflows/test-autoreview.yml | |
push: | |
paths: | |
- composer.json | |
- spark | |
- '**.php' | |
- .github/workflows/test-autoreview.yml | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
auto-review-tests: | |
uses: ./.github/workflows/reusable-serviceless-phpunit-test.yml # @TODO Extract to codeigniter4/.github repo | |
with: | |
job-name: Automatic Code Review [PHP 8.1] | |
php-version: '8.1' | |
job-id: auto-review-tests | |
group-name: AutoReview |