Compare commits

..

3 Commits

Author SHA1 Message Date
1f914fef06 chore: align renovate config with new extend rules
All checks were successful
CI / Test (action.json) (pull_request) Successful in 14s
CI / Test (docker-compose.json) (pull_request) Successful in 15s
CI / Test (k8s.json) (pull_request) Successful in 14s
CI / Test (common.json) (pull_request) Successful in 48s
CI / Test (helm.json) (pull_request) Successful in 46s
2026-02-08 19:54:29 +01:00
287979ad0a feat: always extend commons 2026-02-08 19:54:11 +01:00
d142b731b5 feat: ignore cooldown for internal deps
All checks were successful
CI / Test (action.json) (pull_request) Successful in 15s
CI / Test (docker-compose.json) (pull_request) Successful in 14s
CI / Test (k8s.json) (pull_request) Successful in 14s
CI / Test (helm.json) (pull_request) Successful in 45s
CI / Test (common.json) (pull_request) Successful in 48s
2026-02-08 19:51:18 +01:00
4 changed files with 8 additions and 37 deletions

View File

@@ -11,15 +11,15 @@ jobs:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
with:
fetch-depth: 0
- name: Increment tag
id: tag
uses: https://gitea.t000-n.de/t.behrendt/conventional-semantic-git-tag-increment@11c694022eefab5876ac346fc9ffc0464b2548c7 # 0.1.30
uses: https://gitea.t000-n.de/t.behrendt/conventional-semantic-git-tag-increment@4c32e563bea346792d854585112bf6f06b312ce2 # 0.1.24
with:
token: ${{ secrets.GITEA_TOKEN }}
prerelease: ${{ github.event_name == 'workflow_dispatch' }}
- uses: https://gitea.t000-n.de/t.behrendt/actions/release-git-tag@3925c92fc33f3d2bc87d28d21ab691b7e6dd6cdf # 0.2.1
- uses: https://gitea.t000-n.de/t.behrendt/actions/release-git-tag@8a04fa92474f770e525b1e6dd420b471da15c222 # 0.1.0
with:
tag: ${{ steps.tag.outputs.new-tag }}

View File

@@ -15,10 +15,9 @@ jobs:
- "helm.json"
- "common.json"
- "docker-compose.json"
- "bun-npm.json"
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- name: Validate "${{ matrix.json-file }}"
uses: https://gitea.t000-n.de/t.behrendt/validate-json-by-json-schema-action@121bd063c7d52c50e99befc9c162f9a40191a184 # 0.1.11
uses: https://gitea.t000-n.de/t.behrendt/validate-json-by-json-schema-action@3e6f6900956d410f67923617c65f38a7efb228c6 # 0.1.2
with:
json-file: "./${{ matrix.json-file }}"

View File

@@ -1,19 +0,0 @@
{
"$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"]
}
]
}

View File

@@ -2,20 +2,11 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"dependencyDashboard": true,
"semanticCommits": "enabled",
"extends": ["config:best-practices", ":semanticCommitTypeAll(chore)"],
"extends": ["local>t.behrendt/renovate-configs:common", "config:best-practices", ":semanticCommitTypeAll(chore)"],
"packageRules": [
{
"description": "Don't update dependencies unless they are at least 7 days old",
"matchPackageNames": ["*"],
"minimumReleaseAge": "7 days",
"minimumReleaseAgeBehaviour": "timestamp-required",
"internalChecksFilter": "strict"
},
{
"description": "Exempt local dependencies from the minimum release age (last rule wins over earlier packageRules for the same options)",
"matchPackageNames": ["/^(https:\\/\\/)?gitea\\.t000-n\\.de/"],
"minimumReleaseAge": "0 days",
"internalChecksFilter": "none"
"matchPackagePatterns": ["^(https:\\/\\/)?gitea\\.t000-n\\.de\/"],
"minimumReleaseAge": null
}
]
}