From 140ba24a136c63e7f10a998a63e7898aed63ea7d Mon Sep 17 00:00:00 2001 From: Stephanie Wang Date: Wed, 3 Feb 2021 15:06:07 -0500 Subject: [PATCH] build(java): update autorelease branch name check (#939) In response to the new multi release branch changes. --- .../templates/java_library/.github/workflows/auto-release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synthtool/gcp/templates/java_library/.github/workflows/auto-release.yaml b/synthtool/gcp/templates/java_library/.github/workflows/auto-release.yaml index 176ea008a..fec091a3c 100644 --- a/synthtool/gcp/templates/java_library/.github/workflows/auto-release.yaml +++ b/synthtool/gcp/templates/java_library/.github/workflows/auto-release.yaml @@ -17,7 +17,7 @@ jobs: } // only approve PRs like "chore: release " - if ( !context.payload.pull_request.title.startsWith("chore: release") ) { + if ( !context.payload.pull_request.title.startsWith("chore(master): release") ) { return; }