From 304076c84611b1c35482ea046c7679fbe0da56e5 Mon Sep 17 00:00:00 2001 From: Volodymyr Vreshch Date: Fri, 17 Jul 2026 23:07:51 +0200 Subject: [PATCH 1/2] chore: add dependabot config (grouped, Fri 18:00 Europe/Prague) --- .github/dependabot.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..cbe567a --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,26 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" + day: "friday" + time: "18:00" + timezone: "Europe/Prague" + open-pull-requests-limit: 10 + assignees: ["vreshch"] + groups: + all-dependencies: + patterns: ["*"] + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + day: "friday" + time: "18:00" + timezone: "Europe/Prague" + open-pull-requests-limit: 5 + assignees: ["vreshch"] + groups: + all-dependencies: + patterns: ["*"] From e355870c3f772777776e11df2d43a27c2b58146e Mon Sep 17 00:00:00 2001 From: Volodymyr Vreshch Date: Fri, 17 Jul 2026 23:10:25 +0200 Subject: [PATCH 2/2] style: single-quote dependabot.yml to satisfy prettier --- .github/dependabot.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index cbe567a..85cb92f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,26 +1,26 @@ version: 2 updates: - - package-ecosystem: "npm" - directory: "/" + - package-ecosystem: 'npm' + directory: '/' schedule: - interval: "weekly" - day: "friday" - time: "18:00" - timezone: "Europe/Prague" + interval: 'weekly' + day: 'friday' + time: '18:00' + timezone: 'Europe/Prague' open-pull-requests-limit: 10 - assignees: ["vreshch"] + assignees: ['vreshch'] groups: all-dependencies: - patterns: ["*"] - - package-ecosystem: "github-actions" - directory: "/" + patterns: ['*'] + - package-ecosystem: 'github-actions' + directory: '/' schedule: - interval: "weekly" - day: "friday" - time: "18:00" - timezone: "Europe/Prague" + interval: 'weekly' + day: 'friday' + time: '18:00' + timezone: 'Europe/Prague' open-pull-requests-limit: 5 - assignees: ["vreshch"] + assignees: ['vreshch'] groups: all-dependencies: - patterns: ["*"] + patterns: ['*']