-
Notifications
You must be signed in to change notification settings - Fork 5
44 lines (44 loc) · 1.56 KB
/
phpcbf.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: PHP Code Beautifier
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: Install Composer dependencies and run PHPCBF
run: |
CBF=false
composer install
if ! composer lint: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: env.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 robot! :robot: I fixed PHPCS issues with \`phpcbf\` on $CURRENT_COMMIT. Please review the changes."