From 77ad7c17a9dbc93368e64343d7e6c71b4d268e42 Mon Sep 17 00:00:00 2001 From: Phillip Rak Date: Fri, 20 Dec 2024 15:19:01 -0700 Subject: [PATCH 1/2] Add `dependabot.yml` Signed-off-by: Phillip Rak --- .github/dependabot.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000000..65a7a360f6b --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,21 @@ +version: 2 +updates: + + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + open-pull-requests-limit: 5 + labels: ["component/dependencies"] + + # Maintain dependencies for dashboard, shell, and packages + - package-ecosystem: "npm" + directories: + - "/" + - "/shell" + - "/pkg/*" + schedule: + interval: "daily" + open-pull-requests-limit: 5 + labels: ["component/dependencies"] From c42139c067ac708792fb163774d5e51d1d1c6a32 Mon Sep 17 00:00:00 2001 From: Phillip Rak Date: Fri, 10 Jan 2025 08:54:17 -0700 Subject: [PATCH 2/2] Add creators, docusaurus, and storybook to dependabot schedule Signed-off-by: Phillip Rak --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 65a7a360f6b..b1aad7ed2e4 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -14,6 +14,10 @@ updates: directories: - "/" - "/shell" + - "/creators/extension" + - "/creators/extension/*" + - "/docusaurus" + - "/storybook" - "/pkg/*" schedule: interval: "daily"