Skip to content

respect softdeletes when the ->withoutTrashed() option is set #3

respect softdeletes when the ->withoutTrashed() option is set

respect softdeletes when the ->withoutTrashed() option is set #3

Workflow file for this run

name: 'Fix PHP Code Styling'
on:
workflow_dispatch:
pull_request:
types:
- closed
branches:
- 3.x
paths:
- '**.php'
permissions:
contents: write
jobs:
if_merged:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
ref: ${{ github.head_ref }}
- name: Fix PHP code style issues
uses: aglipanci/laravel-pint-action@v2
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: "Format Code"
commit_user_name: 'GitHub Actions'