From ad66df81d189b4b8631da71e01f5070e7e4a8001 Mon Sep 17 00:00:00 2001 From: Steven Serrata Date: Thu, 26 Mar 2026 10:55:08 -0400 Subject: [PATCH 1/2] chore(deps): add dependabot config for daily npm updates Configure Dependabot to scan for npm updates daily across the root workspace and both published packages (docusaurus-plugin-openapi-docs and docusaurus-theme-openapi-docs). Co-Authored-By: Claude Sonnet 4.6 --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..8d8a1ab04 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +version: 2 +updates: + - package-ecosystem: npm + directory: / + schedule: + interval: daily + - package-ecosystem: npm + directory: /packages/docusaurus-plugin-openapi-docs + schedule: + interval: daily + - package-ecosystem: npm + directory: /packages/docusaurus-theme-openapi-docs + schedule: + interval: daily From 1db5e7ec0aa68e9a0603f5253856c47c7d7cb559 Mon Sep 17 00:00:00 2001 From: Steven Serrata Date: Thu, 26 Mar 2026 10:56:51 -0400 Subject: [PATCH 2/2] chore(deps): simplify dependabot config to root only MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Yarn workspaces hoists all dependencies to the root yarn.lock, so Dependabot only needs to scan from / — it will pick up package.json files across all workspace packages automatically. Co-Authored-By: Claude Sonnet 4.6 --- .github/dependabot.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8d8a1ab04..1fb0b5874 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,11 +4,3 @@ updates: directory: / schedule: interval: daily - - package-ecosystem: npm - directory: /packages/docusaurus-plugin-openapi-docs - schedule: - interval: daily - - package-ecosystem: npm - directory: /packages/docusaurus-theme-openapi-docs - schedule: - interval: daily