Skip to content

Update php.yml

Update php.yml #123

Workflow file for this run

name: PHP Composer
on:
push:
branches: ["main", "develop"]
pull_request:
branches: ["main", "develop"]
permissions:
contents: write
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup PHP
uses: shivammathur/[email protected]
with:
php-version: '8.2'
- name: Check for composer.json changes
id: check-composer
run: |
git diff --name-only origin/${{ github.base_ref }} HEAD | grep -q "composer.json" && echo "changed=true" >> $GITHUB_OUTPUT || echo "changed=false" >> $GITHUB_OUTPUT
- name: Cache Composer packages
if: steps.check-composer.outputs.changed == 'true'
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Update dependencies if composer.json changed
if: steps.check-composer.outputs.changed == 'true'
run: |
composer update --prefer-dist --no-progress
- name: Commit and push if composer.lock changed
if: steps.check-composer.outputs.changed == 'true'
run: |
if git diff --exit-code composer.lock; then
echo "No changes to composer.lock needed"
else
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add composer.lock vendor/
git commit -m "Update composer.lock and vendor directory to match composer.json changes"
git push
fi