We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 876356c commit 8da1bc9Copy full SHA for 8da1bc9
.github/workflows/static-analysis.yml
@@ -47,6 +47,8 @@ jobs:
47
48
name: Facade DocBlocks
49
50
+ if: ${{ github.repository_owner == 'laravel' && github.event_name == 'push' }}
51
+
52
steps:
53
- name: Checkout code
54
uses: actions/checkout@v3
@@ -65,5 +67,11 @@ jobs:
65
67
max_attempts: 5
66
68
command: composer update --prefer-stable --prefer-dist --no-interaction --no-progress
69
- - name: Lint facade docblocks
- run: php -f bin/facades.php -- --lint
70
+ - name: Update facade docblocks
71
+ run: php -f bin/facades.php
72
73
+ - name: Commit facade docblocks
74
+ uses: stefanzweifel/git-auto-commit-action@v4
75
+ with:
76
+ commit_message: Update facade docblocks
77
+ file_pattern: src/
0 commit comments