Make WordPress Core

Changeset 53612


Ignore:
Timestamp:
06/30/2022 05:13:04 PM (2 years ago)
Author:
desrosj
Message:

Build/Test Tools: Remove phpcs job related checks.

PHPCS scanning was added in WordPress 5.1, so the status of those checks should not be checked when passing the workflow results to the Slack notifications workflow.

See #56095.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/4.9/.github/workflows/coding-standards.yml

    r53609 r53612  
    9494    if: ${{ github.repository == 'WordPress/wordpress-develop' && github.event_name != 'pull_request' && always() }}
    9595    with:
    96       calling_status: ${{ needs.phpcs.result == 'success' && needs.jshint.result == 'success' && 'success' || ( needs.phpcs.result == 'cancelled' || needs.jshint.result == 'cancelled' ) && 'cancelled' || 'failure' }}
     96      calling_status: ${{ needs.jshint.result == 'success' && 'success' || needs.jshint.result == 'cancelled' && 'cancelled' || 'failure' }}
    9797    secrets:
    9898      SLACK_GHA_SUCCESS_WEBHOOK: ${{ secrets.SLACK_GHA_SUCCESS_WEBHOOK }}
Note: See TracChangeset for help on using the changeset viewer.