From 6628ab1f88a9795db0415955adce693a1fe4d830 Mon Sep 17 00:00:00 2001 From: "Thomas F. K. Jorna" Date: Tue, 25 Feb 2025 15:03:31 +0100 Subject: [PATCH 1/2] dev: add dependabot --- .github/dependabot.yml | 55 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..435c7f489 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,55 @@ +# yaml-language-server: $schema=https://json.schemastore.org/dependabot-2.0.json +# Dependabot configuration file +# See documentation: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + # package.json + pnpm catalog updates + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" + day: "monday" + open-pull-requests-limit: 10 + labels: + - "dependencies" + - "npm" + commit-message: + prefix: "npm" + include: "scope" + # group all minor and patch updates together + groups: + minor-patch-dependencies: + patterns: + - "*" + update-types: + - "minor" + - "patch" + + # GitHub Actions updates + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + day: "monday" + open-pull-requests-limit: 5 + labels: + - "dependencies" + - "github-actions" + commit-message: + prefix: "github-actions" + include: "scope" + + # docker updates + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "weekly" + day: "monday" + open-pull-requests-limit: 5 + labels: + - "dependencies" + - "docker" + commit-message: + prefix: "docker" + include: "scope" From 364ee0890384f627cf7cbbd25c53b033abd6a262 Mon Sep 17 00:00:00 2001 From: "Thomas F. K. Jorna" Date: Tue, 25 Feb 2025 15:03:45 +0100 Subject: [PATCH 2/2] dev: add yaml extension suggestion --- .vscode/extensions.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 7636918d8..e102df0a1 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -3,6 +3,8 @@ "ms-playwright.playwright", "YoavBls.pretty-ts-errors", "esbenp.prettier-vscode", - "dbaeumer.vscode-eslint" + "dbaeumer.vscode-eslint", + // for yaml autocompletion using the # yaml-language-server: $schema=... directive + "redhat.vscode-yaml" ] }