From 72f6e13ddb9c8fd9eb245b29fb75f7b8b7446ed5 Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Mon, 27 Sep 2021 11:59:55 -0400 Subject: [PATCH 1/2] chore: exclude 'CODEOWNERS' from templated files See: https://github.com/googleapis/synthtool/pull/1201 --- owlbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/owlbot.py b/owlbot.py index a548dd48a0..7a7901dc30 100644 --- a/owlbot.py +++ b/owlbot.py @@ -141,7 +141,7 @@ def update_fixup_scripts(library): ) python.py_samples(skip_readmes=True) -s.move(templated_files) +s.move(templated_files, excludes=["CODEOOWNERS"]) s.replace( "noxfile.py", From 4d43ba058073ce30f2e18797b65291355f1dac59 Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Mon, 27 Sep 2021 12:02:18 -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 7a7901dc30..bc9bc735df 100644 --- a/owlbot.py +++ b/owlbot.py @@ -141,7 +141,7 @@ def update_fixup_scripts(library): ) python.py_samples(skip_readmes=True) -s.move(templated_files, excludes=["CODEOOWNERS"]) +s.move(templated_files, excludes=[".github/CODEOOWNERS"]) s.replace( "noxfile.py",