summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorrenovate[bot] <29139614+renovate[bot]@users.noreply.github.com>2022-09-03 12:21:52 -0700
committerGitHub <noreply@github.com>2022-09-03 12:21:52 -0700
commit37af7b8db60412051e9cdfd59cfe8134bcc2dca7 (patch)
treeb1c63cc03e0e042e5481233f654b5ae2056d7f0c /.github
parent8a7225a249c5d9292a35e8745f3184725b52f52a (diff)
Replace Dependabot with Renovate (#1575)
* Add renovate.json * move renovate config file into .github dir * update config to match dependabot * remove old dependabot config * update prhourlylimit setting for renovate * fix typo Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jonathan Wren <jonathan@nowandwren.com>
Diffstat (limited to '.github')
-rw-r--r--.github/dependabot.yml12
-rw-r--r--.github/renovate.json14
2 files changed, 14 insertions, 12 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
deleted file mode 100644
index 070f47f8..00000000
--- a/.github/dependabot.yml
+++ /dev/null
@@ -1,12 +0,0 @@
-version: 2
-updates:
-- package-ecosystem: pip
- directory: "/"
- schedule:
- interval: daily
- open-pull-requests-limit: 10
- reviewers:
- - wren
- - micahellison
- labels:
- - packaging
diff --git a/.github/renovate.json b/.github/renovate.json
new file mode 100644
index 00000000..5aa9f254
--- /dev/null
+++ b/.github/renovate.json
@@ -0,0 +1,14 @@
+{
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
+ "extends": [
+ "config:base"
+ ],
+ "schedule": [ "at any time" ],
+ "prConcurrentLimit": 10,
+ "prHourlyLimit": 10,
+ "reviewers": [
+ "wren",
+ "micahellison"
+ ],
+ "labels": [ "packaging" ]
+}