Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions owlbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +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 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.
]
)

Expand Down
2 changes: 1 addition & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
}
Expand Down