From 9c2dbc94819216946f0b8fe71d9cc26705d3521d Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Thu, 11 Jun 2026 15:21:14 +1000 Subject: [PATCH 1/2] Tune Dependabot bundler cadence and route reviews Bundler updates move from weekly to daily with minor/patch grouping and a PR cap, per the dependabot-bootstrap campaign (AINFRA-2437). CODEOWNERS routes the Apps Infra surface (dependency files, CI config, toolchain pins) to apps-infra-tooling, replacing the retired dependabot.yml reviewers key. --- .github/dependabot.yml | 6 +++++- CODEOWNERS | 16 ++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5ada151c6b0b..574266de23e8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -13,4 +13,8 @@ updates: - package-ecosystem: "bundler" # See documentation for possible values directory: "/" # Location of package manifests schedule: - interval: "weekly" + interval: "daily" + groups: + ruby-minor-and-patch: + update-types: [minor, patch] + open-pull-requests-limit: 5 diff --git a/CODEOWNERS b/CODEOWNERS index ff67545a0cd4..62fd7c7197ef 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -2,3 +2,19 @@ /WordPress/WordPressUITests/ @wordpress-mobile/mobile-ui-testing-squad /WordPress/WordPressScreenshotGeneration/ @wordpress-mobile/mobile-ui-testing-squad /WordPress/JetpackScreenshotGeneration/ @wordpress-mobile/mobile-ui-testing-squad + +# Ruby dependency surface +Gemfile* @wordpress-mobile/apps-infra-tooling +.bundle/ @wordpress-mobile/apps-infra-tooling +.rubocop*.yml @wordpress-mobile/apps-infra-tooling +fastlane/ @wordpress-mobile/apps-infra-tooling + +# CI and automation +.buildkite/ @wordpress-mobile/apps-infra-tooling +.github/workflows/ @wordpress-mobile/apps-infra-tooling +.github/dependabot.yml @wordpress-mobile/apps-infra-tooling +Dangerfile* @wordpress-mobile/apps-infra-tooling + +# Toolchain and environment pins +.ruby-version @wordpress-mobile/apps-infra-tooling +.xcode-version @wordpress-mobile/apps-infra-tooling From 1a7f0470dc0eedaffe616a2178fd70adf6345780 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Fri, 12 Jun 2026 11:25:48 +1000 Subject: [PATCH 2/2] Add Secrets stanza to CODEOWNERS Route a8c configure secret material (.configure-files/) to apps-infra-tooling, per AINFRA-2437. --- CODEOWNERS | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CODEOWNERS b/CODEOWNERS index 62fd7c7197ef..049a06047a55 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -18,3 +18,6 @@ Dangerfile* @wordpress-mobile/apps-infra-tooling # Toolchain and environment pins .ruby-version @wordpress-mobile/apps-infra-tooling .xcode-version @wordpress-mobile/apps-infra-tooling + +# Secrets +.configure-files/ @wordpress-mobile/apps-infra-tooling