From 184c90e9d6e59b4fcf22d261dea11fc12fbba1d1 Mon Sep 17 00:00:00 2001 From: Jeff Ching Date: Mon, 23 Mar 2020 15:02:33 -0700 Subject: [PATCH] chore(java_templates): mark version bumps of current library as a chore --- synthtool/gcp/templates/java_library/renovate.json | 3 ++- synthtool/languages/java.py | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/synthtool/gcp/templates/java_library/renovate.json b/synthtool/gcp/templates/java_library/renovate.json index fc6412701..30c85dc09 100644 --- a/synthtool/gcp/templates/java_library/renovate.json +++ b/synthtool/gcp/templates/java_library/renovate.json @@ -56,6 +56,7 @@ }, { "packagePatterns": [ + "^{{metadata['repo']['distribution_name']}}", "^com.google.cloud:libraries-bom" ], "semanticCommitType": "chore", @@ -75,4 +76,4 @@ } ], "semanticCommits": true -} +} \ No newline at end of file diff --git a/synthtool/languages/java.py b/synthtool/languages/java.py index dff873987..ea0997ad8 100644 --- a/synthtool/languages/java.py +++ b/synthtool/languages/java.py @@ -324,10 +324,9 @@ def bazel_library( def _merge_common_templates( source_text: str, destination_text: str, file_path: Path ) -> str: - log.debug(f"merge: {file_path}") # keep any existing pom.xml if file_path.match("pom.xml"): - log.info(f"existing pom file found ({file_path}) - keeping the existing") + log.debug(f"existing pom file found ({file_path}) - keeping the existing") return destination_text # by default return the newly generated content