-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use our phpcs jobs but use the existing commit job
- Loading branch information
1 parent
f228382
commit e88d3a7
Showing
1 changed file
with
6 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,10 +31,16 @@ jobs: | |
with: | ||
github_token: ${{ github.token }} | ||
use_default_configuration_file: true | ||
- name: Install Composer dependencies | ||
run: composer install | ||
- name: PHP Code Beautifier | ||
run: composer phpcbf | ||
- uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
commit_message: "PHPCBF: Fix coding standards" | ||
commit_options: '--no-verify' | ||
branch: ${{ github.ref }} | ||
commit_user_name: "Pantheon Robot" | ||
commit_user_email: "[email protected]" | ||
- name: Lint | ||
run: composer lint |