Skip to content

Commit 0b064d7

Browse files
build(java): update autorelease title check in response to the new multi release branch changes (#980)
1 parent e5fa6d9 commit 0b064d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

synthtool/gcp/templates/java_library/.github/workflows/auto-release.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
return;
1717
}
1818
19-
// only approve PRs like "chore(master): release <release version>"
20-
if ( !context.payload.pull_request.title.startsWith("chore(master): release") ) {
19+
// only approve PRs like "chore: release <release version>"
20+
if ( !context.payload.pull_request.title.startsWith("chore: release") ) {
2121
return;
2222
}
2323

0 commit comments

Comments
 (0)