Fix dynamic components #70
Workflow file for this run
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
name: Format | |
on: | |
pull_request: | |
paths: ['**.php'] | |
jobs: | |
php-cs-fixer: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
- uses: ramsey/composer-install@v2 | |
- name: Run PHP-CS-Fixer | |
id: format | |
# https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#multiline-strings | |
run: | | |
delimiter=$RANDOM | |
echo "summary<<${delimiter}" >> $GITHUB_OUTPUT | |
composer format >> $GITHUB_OUTPUT | |
echo $delimiter >> $GITHUB_OUTPUT | |
- name: Check for fixed files | |
run: echo "changed=$(git diff --quiet && echo false || echo true)" >> $GITHUB_ENV | |
- name: Commit changes | |
if: ${{ env.changed == 'true' }} | |
run: | | |
git config --global user.name github-actions | |
git config --global user.email github-actions[bot]@users.noreply.github.com | |
# awk trims leading and trailing whitespace from each line, sed removes the last two lines | |
git commit -a -m "Format" -m "$(echo '${{ steps.format.outputs.summary }})' | awk '{$1=$1};1' | sed '$d' | sed '$d')" | |
git push |