From cf1f2d16063be362bb59fed4fa147c8495d3cc11 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 18 Jun 2025 16:42:18 +0000 Subject: [PATCH 1/5] chore: ignore docs.yml and lint.yml in renovate This change updates renovate.json to prevent renovate-bot from updating the specified workflow files. --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index c7875c4..9d9a6d0 100644 --- a/renovate.json +++ b/renovate.json @@ -5,7 +5,7 @@ ":preserveSemverRanges", ":disableDependencyDashboard" ], - "ignorePaths": [".pre-commit-config.yaml", ".kokoro/requirements.txt", "setup.py", ".github/workflows/unittest.yml"], + "ignorePaths": [".pre-commit-config.yaml", ".kokoro/requirements.txt", "setup.py", ".github/workflows/unittest.yml", ".github/workflows/docs.yml", ".github/workflows/lint.yml"], "pip_requirements": { "fileMatch": ["requirements-test.txt", "samples/[\\S/]*constraints.txt", "samples/[\\S/]*constraints-test.txt"] } From 86fcefb238a6612399a87cca4a6b143c2c555668 Mon Sep 17 00:00:00 2001 From: Owl Bot Date: Wed, 18 Jun 2025 16:44:30 +0000 Subject: [PATCH 2/5] =?UTF-8?q?=F0=9F=A6=89=20Updates=20from=20OwlBot=20po?= =?UTF-8?q?st-processor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 9d9a6d0..c7875c4 100644 --- a/renovate.json +++ b/renovate.json @@ -5,7 +5,7 @@ ":preserveSemverRanges", ":disableDependencyDashboard" ], - "ignorePaths": [".pre-commit-config.yaml", ".kokoro/requirements.txt", "setup.py", ".github/workflows/unittest.yml", ".github/workflows/docs.yml", ".github/workflows/lint.yml"], + "ignorePaths": [".pre-commit-config.yaml", ".kokoro/requirements.txt", "setup.py", ".github/workflows/unittest.yml"], "pip_requirements": { "fileMatch": ["requirements-test.txt", "samples/[\\S/]*constraints.txt", "samples/[\\S/]*constraints-test.txt"] } From 9d4148563355908ed6089d43b9458522d2d96e40 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 18 Jun 2025 16:51:48 +0000 Subject: [PATCH 3/5] chore: exclude renovate.json from owlbot updates This ensures that owlbot does not overwrite the changes made to `renovate.json`. --- owlbot.py | 1 + renovate.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/owlbot.py b/owlbot.py index 93572a0..cc5c7e5 100644 --- a/owlbot.py +++ b/owlbot.py @@ -43,6 +43,7 @@ ".github/workflows/docs.yml", # to avoid overwriting python version ".github/workflows/lint.yml", # to avoid overwriting python version "noxfile.py", + "renovate.json", ] ) diff --git a/renovate.json b/renovate.json index c7875c4..9d9a6d0 100644 --- a/renovate.json +++ b/renovate.json @@ -5,7 +5,7 @@ ":preserveSemverRanges", ":disableDependencyDashboard" ], - "ignorePaths": [".pre-commit-config.yaml", ".kokoro/requirements.txt", "setup.py", ".github/workflows/unittest.yml"], + "ignorePaths": [".pre-commit-config.yaml", ".kokoro/requirements.txt", "setup.py", ".github/workflows/unittest.yml", ".github/workflows/docs.yml", ".github/workflows/lint.yml"], "pip_requirements": { "fileMatch": ["requirements-test.txt", "samples/[\\S/]*constraints.txt", "samples/[\\S/]*constraints-test.txt"] } From 21fa56d9d761b9166b3c8e59e34b048f9344a189 Mon Sep 17 00:00:00 2001 From: Chalmer Lowe Date: Wed, 18 Jun 2025 13:24:41 -0400 Subject: [PATCH 4/5] Update owlbot.py --- owlbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/owlbot.py b/owlbot.py index cc5c7e5..d75a7bd 100644 --- a/owlbot.py +++ b/owlbot.py @@ -43,7 +43,7 @@ ".github/workflows/docs.yml", # to avoid overwriting python version ".github/workflows/lint.yml", # to avoid overwriting python version "noxfile.py", - "renovate.json", + "renovate.json", # to avoid overwriting the ignorePaths list. ] ) From c5f6005ad8cf3c7c375d42744b6b53ba58b0b37b Mon Sep 17 00:00:00 2001 From: Chalmer Lowe Date: Wed, 18 Jun 2025 13:29:41 -0400 Subject: [PATCH 5/5] Update owlbot.py --- owlbot.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/owlbot.py b/owlbot.py index d75a7bd..8606324 100644 --- a/owlbot.py +++ b/owlbot.py @@ -43,7 +43,10 @@ ".github/workflows/docs.yml", # to avoid overwriting python version ".github/workflows/lint.yml", # to avoid overwriting python version "noxfile.py", - "renovate.json", # to avoid overwriting the ignorePaths list. + "renovate.json", # to avoid overwriting the ignorePaths list additions: + # ".github/workflows/docs.yml AND lint.yml" specifically + # the version of python referenced in each of those files. + # Currently renovate bot wants to change 3.10 to 3.13. ] )