From f60c6bb0cb506dec504cf7712433976f58f503d0 Mon Sep 17 00:00:00 2001 From: Julian Waller Date: Tue, 25 Jun 2024 15:17:44 +0100 Subject: [PATCH 1/2] chore: add codeowners --- .github/CODEOWNERS | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 000000000..cdc0028ef --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @nrkno/sofieteam From db19ee31c64aa029096150855c4ffa4019723fcf Mon Sep 17 00:00:00 2001 From: Julian Waller Date: Tue, 25 Jun 2024 15:18:06 +0100 Subject: [PATCH 2/2] chore: update dependabot config --- .github/dependabot.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e8079d993..160a919a7 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,21 @@ version: 2 updates: + # Enable version updates for npm + - package-ecosystem: "npm" + # Look for `package.json` and `lock` files in the `root` directory + directory: "/" + # Check the npm registry for updates every day (weekdays) + schedule: + interval: "daily" + # Only create security updates + open-pull-requests-limit: 0 + # Default reviewers + reviewers: + - "@nrkno/sofieteam" + - package-ecosystem: "github-actions" + # Workflow files stored in the + # default location of `.github/workflows` directory: "/" schedule: interval: "weekly"