We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d64b9ad commit 74c56d5Copy full SHA for 74c56d5
2 files changed
.github/dependabot.yml
@@ -19,6 +19,9 @@ updates:
19
directory: "/"
20
schedule:
21
interval: "weekly"
22
+ ignore:
23
+ - dependency-name: "*"
24
+ update-types: ["version-update:semver-patch"]
25
cooldown:
26
default-days: 7
27
groups:
.github/workflows/lint.yml
@@ -19,4 +19,6 @@ jobs:
with:
python-version: "3.x"
- name: Run pre-commit
- uses: pre-commit/action@646c83fcd040023954eafda54b4db0192ce70507 # v3.0.0
+ run: |
+ python -m pip install pre-commit==4.6.0
+ pre-commit run --show-diff-on-failure --color=always --all-files
0 commit comments