aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2025-06-25 12:53:25 +0300
committerValentin Popov <valentin@popov.link>2025-06-25 12:53:25 +0300
commitbf4ea9133131624dc32c32bd56a1a9b35cc3e83f (patch)
tree5c65cd72f68f68901908b6fb7f08b68028c03625
parent3eca4026289b86fc038137215c88fcb8b686b3d6 (diff)
downloadauth_http-bf4ea9133131624dc32c32bd56a1a9b35cc3e83f.tar.xz
auth_http-bf4ea9133131624dc32c32bd56a1a9b35cc3e83f.zip
Add configuration files for Dependabot and Renovate to manage dependenciesHEADmasterHEAD
-rw-r--r--.github/dependabot.yml6
-rw-r--r--.github/renovate.json31
2 files changed, 37 insertions, 0 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 0000000..5ace460
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,6 @@
+version: 2
+updates:
+ - package-ecosystem: "github-actions"
+ directory: "/"
+ schedule:
+ interval: "weekly"
diff --git a/.github/renovate.json b/.github/renovate.json
new file mode 100644
index 0000000..dc971fc
--- /dev/null
+++ b/.github/renovate.json
@@ -0,0 +1,31 @@
+{
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
+ "extends": [
+ "config:recommended",
+ ":disableDependencyDashboard"
+ ],
+ "assignees": [
+ "valentineus"
+ ],
+ "labels": [
+ "dependencies",
+ "automated"
+ ],
+ "packageRules": [
+ {
+ "description": "Group patch & minor updates together",
+ "groupName": "all digest updates",
+ "groupSlug": "all-digest",
+ "matchUpdateTypes": [
+ "minor",
+ "patch",
+ "pin",
+ "digest"
+ ],
+ "matchPackageNames": [
+ "*"
+ ],
+ "automerge": true
+ }
+ ]
+} \ No newline at end of file