inpsyde / php-coding-standards

Style guide for writing consistent PHP for WordPress projects.
MIT License
98 stars 23 forks source link

Remove "skip ci" check from GitHub Actions workflow file #48

Closed tyrann0us closed 3 years ago

tyrann0us commented 3 years ago

Please check if the PR fulfills these requirements

What kind of change does this PR introduce? (Bug fix, feature, docs update, ...) Improvement

What is the current behavior? (You can also link to an open issue here) The Quality Assurance GitHub Actions workflow file contains logic for skipping the jobs if the commit message contains the words ci skip.

What is the new behavior (if this is a feature change)? The Quality Assurance GitHub Actions workflow file does not contain logic for skipping the jobs if the commit message contains the words ci skip.

Does this PR introduce a breaking change? (What changes might users need to make in their application due to this PR?) No.

Other information: The mentioned logic is no longer necessary because GitHub Actions provides its own logic that even listens to more keywords. For details, see https://github.blog/changelog/2021-02-08-github-actions-skip-pull-request-and-push-workflows-with-skip-ci/.