Skip to content

Commit

Permalink
[9.x] Auto fix docblock changes (#45275)
Browse files Browse the repository at this point in the history
* Auto fix docblock changes

* Update static-analysis.yml
  • Loading branch information
driesvints committed Dec 21, 2022
1 parent 876356c commit 8da1bc9
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/static-analysis.yml
Expand Up @@ -47,6 +47,8 @@ jobs:

name: Facade DocBlocks

if: ${{ github.repository_owner == 'laravel' && github.event_name == 'push' }}

steps:
- name: Checkout code
uses: actions/checkout@v3
Expand All @@ -65,5 +67,11 @@ jobs:
max_attempts: 5
command: composer update --prefer-stable --prefer-dist --no-interaction --no-progress

- name: Lint facade docblocks
run: php -f bin/facades.php -- --lint
- name: Update facade docblocks
run: php -f bin/facades.php

- name: Commit facade docblocks
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Update facade docblocks
file_pattern: src/

0 comments on commit 8da1bc9

Please sign in to comment.