feat: the default commit message made compliant with Conventional Com… #68
Workflow file for this run
This file contains hidden or 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: Phpcs-fix | |
| on: [pull_request, push] | |
| permissions: | |
| contents: write | |
| jobs: | |
| phpcs-phpcbf: | |
| runs-on: ubuntu-latest | |
| # Limit the running time | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Invoke the PHPCS check and PHPCBF fix | |
| # Use the latest commit in the main branch. | |
| uses: WorkOfStan/phpcs-fix@main | |
| with: | |
| commit-changes: true | |
| #debug: true | |
| stop-on-manual-fix: true |