From 176be3b8c61107852c91e1f65ec5f43be3a08dd2 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Wed, 24 Jun 2026 15:29:45 +1000 Subject: [PATCH] Configure Ruby Dependabot routing Set up daily grouped bundler updates and route the Apps Infra-owned dependency and automation surface through CODEOWNERS. --- Generated with the help of Codex, https://openai.com/codex Co-Authored-By: Codex GPT-5 --- .github/CODEOWNERS | 13 +++++++++++++ .github/dependabot.yml | 10 ++++++++++ 2 files changed, 23 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 .github/dependabot.yml diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 000000000..c188eaf86 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,13 @@ +# 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/dependabot.yml @wordpress-mobile/apps-infra-tooling + +# Toolchain and environment pins +.ruby-version @wordpress-mobile/apps-infra-tooling +.xcode-version @wordpress-mobile/apps-infra-tooling diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..9f15e0732 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: bundler + directory: / + schedule: + interval: daily + groups: + ruby-minor-and-patch: + update-types: [minor, patch] + open-pull-requests-limit: 5