Skip to content

Commit

Permalink
Update lint-test.yml to allow commit and push to fail if there are no…
Browse files Browse the repository at this point in the history
… changes
  • Loading branch information
jazzsequence committed Jul 18, 2024
1 parent 678ad0e commit f9d681e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
git config --global user.name "Pantheon Robot"
git config --global user.email "[email protected]"
git add -A
git commit -m "Apply PHP Code Beautifier changes"
git commit -m "Apply PHP Code Beautifier changes" || true # Allow commit to fail if there are no changes.
git push || true # Allow push to fail if there are no changes.
- name: Lint
run: composer lint

0 comments on commit f9d681e

Please sign in to comment.