From 9a70ea80a3a383dc2b897a9aa87db5088d7ef517 Mon Sep 17 00:00:00 2001 From: Craig MacKenzie Date: Wed, 13 Mar 2024 04:45:09 -0400 Subject: [PATCH] Enable automatic updates of elastic go.mod dependencies (#3343) * Enable automatic updates of elastic dependencies * Update .github/dependabot.yml --------- Co-authored-by: Julia Bardi <90178898+juliaElastic@users.noreply.github.com> --- .github/dependabot.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..92654a28e --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,17 @@ +--- +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "daily" + labels: + - automation + - skip-changelog + - Team:Fleet + allow: + # Only update internal dependencies for now while we evaluate this workflow. + - dependency-name: "github.com/elastic/*" + reviewers: + - "elastic/fleet" + open-pull-requests-limit: 10