diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2021-03-18 14:20:38 +0100 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2021-03-18 15:18:13 +0100 |
commit | 1ca74b00d74aa06e1d7e5bd4e941f186f6e223f3 (patch) | |
tree | 6cf8a3bb5ded4510dda5462e0fb371d9f0f53570 | |
parent | 629183bd7f0073dfcbfa4d611abc62a9c5711dab (diff) | |
download | podman-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>
-rw-r--r-- | .github/dependabot.yml | 7 |
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 |