Skip to content

Make country native field required with name fallback. #142

Make country native field required with name fallback.

Make country native field required with name fallback. #142

Workflow file for this run

name: Pint
on:
push:
paths:
- '**.php'
- 'pint.json'
- '.github/workflows/pint.yml'
pull_request:
paths:
- '**.php'
- 'pint.json'
- '.github/workflows/pint.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pint:
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- name: Fix PHP code style issues
uses: aglipanci/laravel-pint-action@2.3.1
with:
testMode: ${{ github.event_name == 'pull_request' }}
verboseMode: true
- name: Commit changes
if: github.event_name == 'push'
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "::Github Actions:: Pint"