PHPORM-361 Remove autocommit of CS fixes #2985
Workflow file for this run
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: "Coding Standards" | |
on: | |
push: | |
pull_request: | |
env: | |
PHP_VERSION: "8.4" | |
DRIVER_VERSION: "stable" | |
jobs: | |
phpcs: | |
name: "phpcs" | |
runs-on: "ubuntu-22.04" | |
permissions: | |
id-token: write | |
contents: write | |
steps: | |
- name: "Generate token and checkout repository" | |
uses: mongodb-labs/drivers-github-tools/secure-checkout@v2 | |
with: | |
app_id: ${{ vars.PR_APP_ID }} | |
private_key: ${{ secrets.PR_APP_PRIVATE_KEY }} | |
- name: "Setup cache environment" | |
id: "extcache" | |
uses: "shivammathur/cache-extensions@v1" | |
with: | |
php-version: ${{ env.PHP_VERSION }} | |
extensions: "mongodb-${{ env.DRIVER_VERSION }}" | |
key: "extcache-v1" | |
- name: "Cache extensions" | |
uses: "actions/cache@v4" | |
with: | |
path: ${{ steps.extcache.outputs.dir }} | |
key: ${{ steps.extcache.outputs.key }} | |
restore-keys: ${{ steps.extcache.outputs.key }} | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
extensions: "mongodb-${{ env.DRIVER_VERSION }}" | |
php-version: ${{ env.PHP_VERSION }} | |
tools: "cs2pr" | |
- name: "Show driver information" | |
run: "php --ri mongodb" | |
- name: "Install dependencies with Composer" | |
uses: "ramsey/[email protected]" | |
- name: "Format the code" | |
continue-on-error: true | |
run: | | |
mkdir .cache | |
./vendor/bin/phpcbf | |
# The -q option is required until phpcs v4 is released | |
- name: "Run PHP_CodeSniffer" | |
run: "vendor/bin/phpcs -q --no-colors --report=checkstyle | cs2pr" | |
- name: "Commit the changes" | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "Apply PHP CS fixes" | |
commit_user_name: 'mongodb-drivers-pr-bot[bot]' | |
commit_user_email: '124201131+mongodb-drivers-pr-bot[bot]@users.noreply.github.com' | |
commit_author: 'mongodb-drivers-pr-bot[bot] <124201131+mongodb-drivers-pr-bot[bot]@users.noreply.github.com>' |