From 46d8ac66eca1dca5d409e3a91b2fa628503ffddd Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Thu, 26 Mar 2026 21:20:15 +0100 Subject: [PATCH] feat: add bun/npm support --- .gitea/workflows/ci.yaml | 1 + bun-npm.json | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 bun-npm.json diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 66f7203..dea9d49 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -15,6 +15,7 @@ jobs: - "helm.json" - "common.json" - "docker-compose.json" + - "bun-npm.json" steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - name: Validate "${{ matrix.json-file }}" diff --git a/bun-npm.json b/bun-npm.json new file mode 100644 index 0000000..4c7a009 --- /dev/null +++ b/bun-npm.json @@ -0,0 +1,19 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["local>t.behrendt/renovate-configs:common"], + "packageRules": [ + { + "description": "Group all minor and patch updates together", + "groupName": "all non-major dependencies", + "groupSlug": "all-minor-patch", + "matchUpdateTypes": ["minor", "patch"], + "matchManagers": ["npm", "bun"] + }, + { + "description": "Group Bun version and Docker version updates together", + "groupName": "bun version", + "groupSlug": "bun-version", + "matchPackageNames": ["Bun", "oven/bun"] + } + ] +} \ No newline at end of file