aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2021-03-18 14:20:38 +0100
committerValentin Rothberg <rothberg@redhat.com>2021-03-18 15:18:13 +0100
commit1ca74b00d74aa06e1d7e5bd4e941f186f6e223f3 (patch)
tree6cf8a3bb5ded4510dda5462e0fb371d9f0f53570 /.github
parent629183bd7f0073dfcbfa4d611abc62a9c5711dab (diff)
downloadpodman-1ca74b00d74aa06e1d7e5bd4e941f186f6e223f3.tar.gz
podman-1ca74b00d74aa06e1d7e5bd4e941f186f6e223f3.tar.bz2
podman-1ca74b00d74aa06e1d7e5bd4e941f186f6e223f3.zip
add a dependabot config to automate vendoring
While dependabot has turned out great to automate updating dependencies, a major painpoint was that we had to manually run `make vendor` for each and every commit. It was causing noise. Adding the config file to `.github/dependabot.yml` will take of also updating the `./vendor` tree. `containers/common` is using this config for a while successfully. [NO TESTS NEEDED] Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to '.github')
-rw-r--r--.github/dependabot.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 000000000..d921d0ffd
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,7 @@
+version: 2
+updates:
+- package-ecosystem: gomod
+ directory: "/"
+ schedule:
+ interval: daily
+ open-pull-requests-limit: 10