From 23a251bd5081de0d59a663d3405b307c367d39b3 Mon Sep 17 00:00:00 2001 From: Tianzi Cai Date: Mon, 14 Jun 2021 09:41:02 -0700 Subject: [PATCH 1/3] fix: exclude CODEOWNERS from synthtool --- synth.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/synth.py b/synth.py index 9ac562d9..12b3198f 100644 --- a/synth.py +++ b/synth.py @@ -17,3 +17,7 @@ import synthtool.languages.java as java java.common_templates() + +java.common_templates(excludes=[ + '.github/CODEOWNERS', +]) From a88323cee78e712b3d223a1553b73668efe2f25c Mon Sep 17 00:00:00 2001 From: Tianzi Cai Date: Mon, 14 Jun 2021 09:52:14 -0700 Subject: [PATCH 2/3] fix: update codeowner team --- .repo-metadata.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.repo-metadata.json b/.repo-metadata.json index cee900cf..d31fe524 100644 --- a/.repo-metadata.json +++ b/.repo-metadata.json @@ -12,6 +12,6 @@ "repo": "googleapis/java-pubsublite-kafka", "repo_short": "java-pubsublite-kafka", "distribution_name": "com.google.cloud:pubsublite-kafka", - "codeowner_team": "@googleapis/api-pubsub", + "codeowner_team": "@googleapis/api-pubsublite", "api_id": "pubsublite.googleapis.com" } From be25f6a2966d4328b4f53c17e0301f20fce4eba0 Mon Sep 17 00:00:00 2001 From: Tianzi Cai Date: Mon, 14 Jun 2021 09:52:35 -0700 Subject: [PATCH 3/3] revert changes in synth.py --- synth.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/synth.py b/synth.py index 12b3198f..9ac562d9 100644 --- a/synth.py +++ b/synth.py @@ -17,7 +17,3 @@ import synthtool.languages.java as java java.common_templates() - -java.common_templates(excludes=[ - '.github/CODEOWNERS', -])