chore(main): release 3.0.1 #14
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
on: | |
pull_request: | |
branches-ignore: | |
# Do not run on auto submitted branches | |
- '**-phpcbf' | |
- 'renovate/' | |
- 'dependabot/' | |
paths: | |
- '**.php' | |
name: WordPress Autofixer | |
jobs: | |
phpcbf-fixer: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '7.4' | |
coverage: none | |
tools: cs2pr | |
# Install dependencies and handle caching in one go. | |
# @link https://github.com/marketplace/actions/install-composer-dependencies | |
- name: Install Composer dependencies | |
uses: "ramsey/composer-install@v1" | |
# Check the code-style consistency of the PHP files. | |
- name: Fix PHP code style | |
id: codestyle | |
continue-on-error: true | |
run: ./vendor/squizlabs/php_codesniffer/bin/phpcbf . --standard=${{ github.workspace }}/phpcs.xml | |
- name: Create Pull Request | |
id: cpr | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
token: ${{ secrets.GH_BOT_TOKEN }} | |
commit-message: PHPCBF Auto Fix | |
committer: Linchpin Bot <[email protected]> | |
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | |
signoff: false | |
branch: ${{ github.event.pull_request.head.ref }}-phpcbf | |
delete-branch: true | |
title: 'Auto Fix Formatting' | |
body: | | |
Update Formatting | |
labels: | | |
phpcs | |
automated pr | |
milestone: 1 | |
draft: false |