Make WordPress Core


Ignore:
Timestamp:
08/12/2025 09:17:18 AM (4 months ago)
Author:
johnbillion
Message:

Build/Test Tools: Adjust various jobs names in the GitHub Actions workflows to remove duplication and improve grouping in the UI when they run.

Props desrosj, mukesh27, johnbillion

See #63170

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/phpunit-tests.yml

    r60625 r60628  
    225225
    226226  #
    227   # Runs specific individual test groups.
     227  # Runs the HTML API test group.
     228  #
     229  # This test group runs separately due to the large number of tests that are skipped in this group while the
     230  # HTML API is being developed. The skipped tests would otherwise cloud the results of all other test groups.
    228231  #
    229232  # These tests are run against the most recent LTS version of MySQL.
    230233  #
    231   specific-test-groups:
    232     name: ${{ matrix.phpunit-test-groups }}
     234  html-api-test-groups:
     235    name: ${{ matrix.label }}
    233236    uses: ./.github/workflows/reusable-phpunit-tests-v3.yml
    234237    permissions:
     
    243246        db-version: [ '8.4' ]
    244247        phpunit-test-groups: [ 'html-api-html5lib-tests' ]
     248        # A matrix value is needed in the 'name' directive for proper grouping in the GitHub UI.
     249        label: [ 'HTML API' ]
    245250    with:
    246251      php: ${{ matrix.php }}
     
    313318      actions: read
    314319      contents: read
    315     needs: [ test-with-mysql, test-with-mariadb, test-innovation-releases, specific-test-groups, limited-matrix-for-forks ]
     320    needs: [ test-with-mysql, test-with-mariadb, test-innovation-releases, html-api-test-groups, limited-matrix-for-forks ]
    316321    if: ${{ github.repository == 'WordPress/wordpress-develop' && github.event_name != 'pull_request' && always() }}
    317322    with:
Note: See TracChangeset for help on using the changeset viewer.