From ac862e387f6f1b83ba1b963a1f8841f32adee87b Mon Sep 17 00:00:00 2001 From: Nawaz Hussain Khazielakha Date: Thu, 8 Aug 2024 09:14:39 -0700 Subject: [PATCH 1/2] add dependabot to image builder repo --- .github/dependabot.yml | 43 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..4b3028fa2a --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,43 @@ +# Please see the documentation for all configuration options: https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + + # github-actions + - directory: "/" + package-ecosystem: "github-actions" + open-pull-requests-limit: 5 + schedule: + interval: "weekly" + time: "09:00" + # Use America/New_York Standard Time (UTC -05:00) + timezone: "America/New_York" + groups: + all-github-actions: + patterns: [ "*" ] + commit-message: + prefix: "dependabot" + include: scope + labels: + - "ok-to-test" + - "kind/cleanup" + - "release-note-none" + + # Docker + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "weekly" + time: "09:00" + # Use America/New_York Standard Time (UTC -05:00) + timezone: "America/New_York" + open-pull-requests-limit: 5 + commit-message: + prefix: "dependabot" + include: scope + ignore: + - dependency-name: 'golang' + labels: + - "ok-to-test" + - "kind/cleanup" + - "release-note-none" From c0437b7aa1fc1329e63d0a18052c1f11e33b1695 Mon Sep 17 00:00:00 2001 From: Nawaz Hussain Khazielakha Date: Thu, 8 Aug 2024 09:37:55 -0700 Subject: [PATCH 2/2] add pip package-ecosystem to images/capi --- .github/dependabot.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4b3028fa2a..197e4b7f32 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -41,3 +41,22 @@ updates: - "ok-to-test" - "kind/cleanup" - "release-note-none" + + # pip + - package-ecosystem: "pip" + directories: + - "/" + - "images/capi" + schedule: + interval: "weekly" + time: "09:00" + # Use America/New_York Standard Time (UTC -05:00) + timezone: "America/New_York" + open-pull-requests-limit: 5 + commit-message: + prefix: "dependabot" + include: scope + labels: + - "ok-to-test" + - "kind/cleanup" + - "release-note-none"