diff options
author | Valentin Popov <valentin@popov.link> | 2025-02-02 04:27:54 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2025-02-02 04:27:54 +0300 |
commit | a4e61118cca8e6c5b17709ca27e02d3012ff74f5 (patch) | |
tree | f583163e9473fe7d17d53dcf64b076c409ada1db /.github | |
parent | 09bfd39b8736e1146cd6aef5de54f6083cc5b191 (diff) | |
download | devcli-master.tar.xz devcli-master.zip |
Diffstat (limited to '.github')
-rw-r--r-- | .github/dependabot.yml | 14 | ||||
-rw-r--r-- | .github/renovate.json | 23 |
2 files changed, 37 insertions, 0 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..2d907b7 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "devcontainers" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..d2a17be --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended", + ":disableDependencyDashboard" + ], + "packageRules": [ + { + "groupName": "all digest updates", + "groupSlug": "all-digest", + "matchUpdateTypes": [ + "minor", + "patch", + "pin", + "digest" + ], + "matchPackageNames": [ + "*" + ], + "automerge": true + } + ] +}
\ No newline at end of file |