From 6e69dbd083b44a1683aaf6a0927b58388ed737cc Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Thu, 11 Jun 2026 15:18:27 +1000 Subject: [PATCH 1/2] ci: 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. --- Generated with the help of Claude Code, https://code.claude.com Co-Authored-By: Claude Fable 5 --- .github/CODEOWNERS | 14 ++++++++++++++ .github/dependabot.yml | 6 +++++- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 000000000..efb2d9618 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,14 @@ +# Ruby dependency surface +Gemfile* @wordpress-mobile/apps-infra-tooling +.bundle/ @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 + +# Toolchain and environment pins +.xcode-version @wordpress-mobile/apps-infra-tooling +.java-version @wordpress-mobile/apps-infra-tooling +.nvmrc @wordpress-mobile/apps-infra-tooling diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 46a801b3a..00bed05ff 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -19,4 +19,8 @@ updates: - package-ecosystem: 'bundler' directory: '/' schedule: - interval: 'weekly' + interval: 'daily' + groups: + ruby-minor-and-patch: + update-types: ['minor', 'patch'] + open-pull-requests-limit: 5 From 367f32878795902e12bff496480875e4448ec73a Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Fri, 12 Jun 2026 10:14:47 +1000 Subject: [PATCH 2/2] ci: retrigger after Buildkite TLS infra outage