Making WordPress.org

Changeset 10418


Ignore:
Timestamp:
10/29/2020 04:43:14 AM (6 years ago)
Author:
dd32
Message:

Theme Directory: Include more context in the GitHub actions run title in r10410.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/theme-directory/class-wporg-themes-upload.php

    r10410 r10418  
    959959                        '/repos/' . WPORG_THEMES_E2E_REPO . '/dispatches',
    960960                        json_encode([
    961                                 'event_type'     => $this->theme->display( 'Name' ),
     961                                'event_type'     => sprintf(
     962                                        "%s %s %s",
     963                                        $this->theme->display( 'Name' ),
     964                                        $this->theme->display( 'Version' ),
     965                                        $this->trac_ticket->priority
     966                                ),
    962967                                'client_payload' => [
    963968                                        'theme_slug'       => $this->theme_slug,
     
    965970                                        'accessible_ready' => in_array( 'accessibility-ready', $this->theme->get( 'Tags' ) ),
    966971                                        'trac_ticket_id'   => $ticket_id,
     972                                        'trac_priority'    => $this->trac_ticket->priority,
    967973                                ],
    968974                        ])
Note: See TracChangeset for help on using the changeset viewer.