Skip to content

Merge branch 'main' of github.com:little-apps/LittleJWT #45

Merge branch 'main' of github.com:little-apps/LittleJWT

Merge branch 'main' of github.com:little-apps/LittleJWT #45

Workflow file for this run

name: Format (PHP)
on:
push:
branches:
- 'main'
pull_request:
paths:
- '**.php'
jobs:
laravel-pint:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.head_ref }}
token: ${{ secrets.WORKFLOW_GIT_ACCESS_TOKEN }}
- name: Install
run: composer install
- name: Run Laravel Pint
run: ./vendor/bin/pint -v
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Applied Laravel Pint changes