Make WordPress Core

Changeset 57085


Ignore:
Timestamp:
11/08/2023 02:06:39 PM (18 months ago)
Author:
desrosj
Message:

Build/Test Tools: Use correct order of arguments for contains().

This corrects the order the arguments are passed to the contains() function in the Performance Testing workflow.

Because the arguments were passed incorrectly, the expression was not evaluating correctly.

Follow up to [56972].

Props hellofromTonya.
See #59805.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/performance.yml

    r57083 r57085  
    9393    permissions:
    9494      contents: read
    95     if: ${{ ( github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' ) && ! contains( '00000000', github.event.before ) }}
     95    if: ${{ ( github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' ) && ! contains( github.event.before, '00000000' ) }}
    9696
    9797    steps:
Note: See TracChangeset for help on using the changeset viewer.