From 0bc5b3a9b630b530564efaba2b374c1d67657350 Mon Sep 17 00:00:00 2001 From: Colin Casey Date: Fri, 20 Oct 2023 14:07:04 -0300 Subject: [PATCH] Configure dependabot and codeowners - Adds a `dependabot.yml` configuration file to get notifications about dependency updates. - Adds a `CODEOWNERS` file to assign reviewers when PRs are opened. --- .github/CODEOWNERS | 1 + .github/dependabot.yml | 21 +++++++++++++++++++++ 2 files changed, 22 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 00000000..3be688ff --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @awaterma @colincasey @wjhsf diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..212d8914 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,21 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" + labels: + - "dependencies" + - "npm" + - "skip changelog" + groups: + production-dependencies: + dependency-type: "production" + update-types: + - "minor" + - "patch" + dev-dependencies: + dependency-type: "development" + update-types: + - "minor" + - "patch"