Skip to content

Commit

Permalink
Calypsoify: auto-label changes to Calypsoify inside package (#37320)
Browse files Browse the repository at this point in the history
  • Loading branch information
coder-karen authored May 10, 2024
1 parent a619091 commit 6b71ea0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: changed

Auto-labeling: label changes to the Calypsoify package
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,12 @@ async function getLabelsToAdd( octokit, owner, repo, number, isDraft, isRevert )
keywords.add( '[Feature] Masterbar' );
}

// The Calypsoify feature now lives in both a package and a Jetpack module.
const calypsoify = file.match( /^projects\/packages\/calypsoify\// );
if ( calypsoify !== null ) {
keywords.add( '[Feature] Calypsoify' );
}

// Docker.
const docker = file.match( /^(projects\/plugins\/boost\/docker|tools\/docker)\// );
if ( docker !== null ) {
Expand Down

0 comments on commit 6b71ea0

Please sign in to comment.