From f66058a71c581e2ab367cc4ced7c9e9cbbc2f74e Mon Sep 17 00:00:00 2001 From: Romain Hugonnet Date: Mon, 5 Feb 2024 07:52:28 -0900 Subject: [PATCH] Add dependabot and pre-commit CI for automatic versioning updates (#466) --- .github/dependabot.yml | 8 ++++++++ .pre-commit-config.yaml | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..ac27a848 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,8 @@ +version: 2 +updates: + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + # Check for updates to GitHub Actions every week + interval: "weekly" diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6bf38829..b716f6a8 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,3 +1,6 @@ +ci: + autofix_prs: false + autoupdate_schedule: quarterly repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.3.0