From 6a7601e0763b99be05306fb3647f048f8743e440 Mon Sep 17 00:00:00 2001 From: John McCall Date: Tue, 24 Feb 2026 15:44:49 -0500 Subject: [PATCH] [TASK] Define CODEOWNERS Add .github/dependabot.yml to enable weekly Dependabot updates for GitHub Actions (limit 5 open PRs, apply "bot" label, and use commit prefix "[CHORE](deps)"). Add CODEOWNERS to set @overturemaps/omf-public-reviewers as the default owner for the repository. These changes automate dependency updates and establish default code ownership for reviews. --- .github/dependabot.yml | 15 +++++++++++++++ CODEOWNERS | 2 ++ 2 files changed, 17 insertions(+) create mode 100644 .github/dependabot.yml create mode 100644 CODEOWNERS diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..ca669707 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +--- +version: 2 +updates: + + # Maintain GitHub Actions dependencies + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 5 + labels: + - "bot" + commit-message: + prefix: "[CHORE](deps)" + include: "scope" diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 00000000..e8812326 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,2 @@ +# Default owners for everything in the repo +* @overturemaps/omf-public-reviewers