Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ authors' reputations.
Finally, any free program is threatened constantly by software
patents. We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary. To prevent this, we have made it clear that any
program proprietary. To prevent this we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.

The precise terms and conditions for copying, distribution and
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,18 @@ async function getLabelsToAdd( octokit, owner, repo, number, isDraft, isRevert )
keywords.add( `[mu wpcom Feature] ${ cleanName( muWpcomFeatureName ) }` );
}

// CRM elements.
const crmModules = file.match( /^projects\/plugins\/crm\/modules\/(?<crmModule>[^/]*)\// );
const crmModuleName = crmModules && crmModules.groups.crmModule;
if ( crmModuleName ) {
keywords.add( `[CRM] ${ cleanName( crmModuleName ) } Module` );
}

const crmApi = file.match( /^projects\/plugins\/crm\/api\// );
if ( crmApi !== null ) {
keywords.add( '[CRM] API' );
}

// Boost Critical CSS.
const boostModules = file.match(
/^projects\/plugins\/boost\/app\/(?:modules|features)\/(?<boostModule>[^/]*)\//
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,9 @@ async function buildMilestoneInfo( octokit, owner, repo, number ) {
for await ( const plugin of plugins ) {
const nextMilestone = await getNextValidMilestone( octokit, owner, repo, plugin );
debug( `check-description: Milestone found: ${ JSON.stringify( nextMilestone ) }` );

debug( `check-description: getting milestone info for ${ plugin }` );
const info = await getMilestoneDates( plugin, nextMilestone );

pluginInfo += info;
debug( `check-description: getting milestone info for ${ plugin }` );
const info = await getMilestoneDates( plugin, nextMilestone );
pluginInfo += info;
}

return pluginInfo;
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ Jetpack is licensed under [GNU General Public License v2 (or later)](./LICENSE.t

## Join us!

Interested in working on awesome open-source code all day? [Join us](https://automattic.com/work-with-us/)!
Interested in working on fantastic open-source code all day? [Join us](https://automattic.com/work-with-us/)!