From 9b1cbd5f3c2de5e0346589f9af73dfb5a08e83cc Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Mon, 27 Sep 2021 11:57:24 -0400 Subject: [PATCH 1/2] chore: exclude 'CODEOWNERS' from templated files See: https://github.com/googleapis/synthtool/pull/1201 --- owlbot.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/owlbot.py b/owlbot.py index 17a80da5..245e099d 100644 --- a/owlbot.py +++ b/owlbot.py @@ -55,7 +55,10 @@ # Add templated files # ---------------------------------------------------------------------------- templated_files = common.py_library(microgenerator=True, split_system_tests=True,) -s.move(templated_files, excludes=["docs/multiprocessing.rst", ".coveragerc"]) +s.move( + templated_files, + excludes=["docs/multiprocessing.rst", ".coveragerc", "CODEOOWNERS"], +) python.py_samples(skip_readmes=True) From 9491a38789cdd7fa1e959da56899a688c79c5967 Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Mon, 27 Sep 2021 12:02:40 -0400 Subject: [PATCH 2/2] chore: use fully-qualified path --- owlbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/owlbot.py b/owlbot.py index 245e099d..e590b68d 100644 --- a/owlbot.py +++ b/owlbot.py @@ -57,7 +57,7 @@ templated_files = common.py_library(microgenerator=True, split_system_tests=True,) s.move( templated_files, - excludes=["docs/multiprocessing.rst", ".coveragerc", "CODEOOWNERS"], + excludes=["docs/multiprocessing.rst", ".coveragerc", ".github/CODEOOWNERS"], ) python.py_samples(skip_readmes=True)