From 35b0bc81c1c6d6871f7472a588514c3ac2f7a8cd Mon Sep 17 00:00:00 2001 From: stephwang Date: Wed, 3 Feb 2021 14:59:22 -0500 Subject: [PATCH] build(java): update autorelease branch name check 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; }