Skip to content

Merge remote-tracking branch 'origin/main' #4

Merge remote-tracking branch 'origin/main'

Merge remote-tracking branch 'origin/main' #4

Workflow file for this run

name: Fix code style
on:
push:
branches: [main]
pull_request:
branches: [main]
paths:
- '**.php'
jobs:
php-code-styling:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
repository: ${{ github.repository }}
token: ${{ secrets.PAT }}
ref: ${{ github.head_ref }}
- name: Fix PHP code style issues
uses: aglipanci/[email protected]
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "chore: Ensure code style consistency across the codebase"