Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* 2. Wire the data source into get_team_contribution_metrics().
* 3. Add the team's post_name slug to this list.
*/
const TEAMS_WITH_DATA = array( 'core', 'meta' );
const TEAMS_WITH_DATA = array( 'core', 'meta', 'test' );

/**
* Whether the given team has wired-up contribution tracking.
Expand Down Expand Up @@ -93,6 +93,7 @@ function team_to_github_repos( string $slug ): array {
$map = array(
'core' => array( 'WordPress/wordpress-develop', 'WordPress/gutenberg' ),
'meta' => array( 'WordPress/wporg-main', 'WordPress/wporg-mu-plugins' ),
'test' => array( 'WordPress/test-handbook' ),
);
Comment on lines 93 to 97
return isset( $map[ $slug ] ) ? $map[ $slug ] : array();
}
Expand Down
Loading