Skip to content

Commit

Permalink
build(java): update autorelease title check in response to the new mu…
Browse files Browse the repository at this point in the history
…lti release branch changes (#980)
  • Loading branch information
stephaniewang526 committed Mar 10, 2021
1 parent e5fa6d9 commit 0b064d7
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -16,8 +16,8 @@ jobs:
return;
}
// only approve PRs like "chore(master): release <release version>"
if ( !context.payload.pull_request.title.startsWith("chore(master): release") ) {
// only approve PRs like "chore: release <release version>"
if ( !context.payload.pull_request.title.startsWith("chore: release") ) {
return;
}
Expand Down

0 comments on commit 0b064d7

Please sign in to comment.