Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add PHPCBF to lint workflow #58

Merged
merged 2 commits into from
Aug 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 41 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,46 @@
name: Lint
on: push
on: [pull_request]
permissions:
contents: write
pull-requests: write
jobs:
phpcbf:
name: PHPCBF & Commit
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: PHPCBF
run: |
composer install
if ! composer phpcbf; then
echo "cbf=true" >> $GITHUB_ENV
else
echo "cbf=false" >> $GITHUB_ENV
fi
- name: Commit changes to PR
if: env.cbf == 'true'
run: |
git config --global user.email "[email protected]"
git config --global user.name "Pantheon Robot"
if ! git diff-index --quiet HEAD --; then
CHANGES_DETECTED=true
git add *.php
git commit -m "PHPCBF: Fix coding standards" --no-verify
git push origin ${{ github.event.pull_request.head.ref }} || CHANGES_DETECTED=false
echo "changes_detected=$CHANGES_DETECTED" >> $GITHUB_ENV
else
echo "changes_detected=false" >> $GITHUB_ENV
fi
- name: Add PR Comment
if: changes_detected == 'true'
env:
GH_TOKEN: ${{ github.token }}
run: |
CURRENT_COMMIT=$(git rev-parse --short HEAD)
gh pr comment ${{ github.event.pull_request.number }} -b "Hi from your friendly Pantheon Robot! :robot: I fixed PHPCS issues with \`phpcbf\` on $CURRENT_COMMIT. Please review the changes."
lint:
name: Lint
runs-on: ubuntu-latest
Expand Down