From 0b064d767537e0675fc053e53fca473c5c701fb8 Mon Sep 17 00:00:00 2001 From: Stephanie Wang Date: Wed, 10 Mar 2021 14:40:03 -0500 Subject: [PATCH] build(java): update autorelease title check in response to the new multi release branch changes (#980) --- .../java_library/.github/workflows/auto-release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 7476e103f..8d77467c8 100644 --- a/synthtool/gcp/templates/java_library/.github/workflows/auto-release.yaml +++ b/synthtool/gcp/templates/java_library/.github/workflows/auto-release.yaml @@ -16,8 +16,8 @@ jobs: return; } - // only approve PRs like "chore(master): release " - if ( !context.payload.pull_request.title.startsWith("chore(master): release") ) { + // only approve PRs like "chore: release " + if ( !context.payload.pull_request.title.startsWith("chore: release") ) { return; }