diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4a15f2ac..263f2550 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,8 +5,12 @@ updates: schedule: interval: daily open-pull-requests-limit: 10 + cooldown: + default-days: 7 - package-ecosystem: github-actions directory: "/" schedule: interval: daily open-pull-requests-limit: 10 + cooldown: + default-days: 7 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 64c6b325..9e62ff9a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,15 +1,4 @@ repos: - - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v6.0.0 - hooks: - - id: trailing-whitespace - - id: end-of-file-fixer - - id: check-yaml - - id: check-toml - - id: check-merge-conflict - - id: mixed-line-ending - args: [--fix=lf] - - id: check-case-conflict - repo: https://github.com/python-jsonschema/check-jsonschema rev: 0.35.0 hooks: @@ -24,6 +13,7 @@ repos: rev: v1.16.3 hooks: - id: zizmor + args: ["--no-progress", "--fix"] - repo: https://github.com/shellcheck-py/shellcheck-py rev: v0.11.0.1 hooks: @@ -45,14 +35,24 @@ repos: args: [--enable=default-role] files: ^docs/ + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v6.0.0 + hooks: + - id: trailing-whitespace + - id: end-of-file-fixer + - id: check-yaml + - id: check-toml + - id: check-merge-conflict + - id: mixed-line-ending + args: [--fix=lf] + - id: check-case-conflict + # Should be the last: - repo: meta hooks: - id: check-useless-excludes ci: - autofix_commit_msg: "[pre-commit.ci] auto fixes from pre-commit.com hooks" autofix_prs: true - autoupdate_commit_msg: "[pre-commit.ci] pre-commit autoupdate" autoupdate_schedule: weekly submodules: false