Skip to content

Commit 543f707

Browse files
Disable auto-update of major Python version (#486)
* Disable auto-update of major Python version Signed-off-by: Matt Norton <matt@carrotmanmatt.com> * [pre-commit.ci lite] apply automatic fixes --------- Signed-off-by: Matt Norton <matt@carrotmanmatt.com> Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
1 parent 0e5081a commit 543f707

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

.github/renovate.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@
2727
"enabled": true
2828
},
2929
"packageRules": [
30+
{
31+
"description": "Only update major Python versions manually",
32+
"enabled": false,
33+
"matchPackageNames": [
34+
"python"
35+
]
36+
},
3037
{
3138
"groupName": "pep621",
3239
"matchManagers": [
@@ -58,7 +65,7 @@
5865
]
5966
},
6067
{
61-
"description": "Update frquently changing pre-commit hooks on Tuesday mornings",
68+
"description": "Update frequently changing pre-commit hooks on Tuesday mornings",
6269
"matchManagers": [
6370
"pre-commit"
6471
],

.github/workflows/check-build-deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
run: uv run -- pre-commit run --all-files --hook-stage manual # TODO: Add GitHub workflows output format
103103

104104
- uses: pre-commit-ci/lite-action@v1.1.0
105-
if: ${{ !cancelled() }}
105+
if: ${{!cancelled()}}
106106

107107
pymarkdown:
108108
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)