[1.x] Add support for user UUIDs #132
Workflow file for this run
This file contains hidden or 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: Laravel Pint | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 # Fetch all history for all branches | |
| - name: Run Laravel Pint | |
| run: | | |
| composer install | |
| ./vendor/bin/pint | |
| - name: Commit changes | |
| uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| add_options: '.' | |
| commit_message: 'Apply automatic changes' | |
| commit_user_name: 'github-actions[bot]' | |
| push_options: '--force' |