Make WordPress Core


Ignore:
Timestamp:
12/13/2024 02:57:56 PM (7 months ago)
Author:
desrosj
Message:

Build/Test Tools: Remove repository specific logic from callable workflows.

Because reusable workflows could be called from any other repository in a variety of contexts, repository specific if conditions should not be present.

Instead, this logic should be included in the calling workflows only.

Props johnbillion.
See #62221.

File:
1 edited

Legend:

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

    r59354 r59507  
    103103    permissions:
    104104      contents: read
    105     if: ${{ ( github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' ) && ! contains( github.event.before, '00000000' ) }}
     105    if: ${{ ! contains( github.event.before, '00000000' ) }}
    106106
    107107    steps:
Note: See TracChangeset for help on using the changeset viewer.