(Fix) Use bool
for rss is_private
instead of int
#5786
Workflow file for this run
This file contains 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: PHP Lint (Pint) | |
on: [push, pull_request] | |
jobs: | |
phplint: | |
strategy: | |
matrix: | |
operating-system: | |
- ubuntu-22.04 | |
name: ${{ matrix.operating-system }} | |
runs-on: ${{ matrix.operating-system }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run Pint | |
uses: aglipanci/[email protected] | |
with: | |
preset: psr12 | |
verboseMode: true | |
- name: Commit Changes | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: PHP Style Change (Laravel Pint CI) | |
commit_user_name: HDVinne | |
commit_user_email: [email protected] | |
commit_author: HDVinnie <[email protected]> |