Compare commits

..

1 Commits

Author SHA1 Message Date
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
9 changed files with 9 additions and 40 deletions

View File

@@ -11,15 +11,15 @@ jobs:
name: Release name: Release
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Increment tag - name: Increment tag
id: 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: with:
token: ${{ secrets.GITEA_TOKEN }} token: ${{ secrets.GITEA_TOKEN }}
prerelease: ${{ github.event_name == 'workflow_dispatch' }} 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: with:
tag: ${{ steps.tag.outputs.new-tag }} tag: ${{ steps.tag.outputs.new-tag }}

View File

@@ -15,10 +15,9 @@ jobs:
- "helm.json" - "helm.json"
- "common.json" - "common.json"
- "docker-compose.json" - "docker-compose.json"
- "bun-npm.json"
steps: steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- name: Validate "${{ matrix.json-file }}" - 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: with:
json-file: "./${{ matrix.json-file }}" json-file: "./${{ matrix.json-file }}"

View File

@@ -1,6 +1,6 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>t.behrendt/renovate-configs:common", "helpers:pinGitHubActionDigests"], "extends": ["helpers:pinGitHubActionDigests"],
"packageRules": [ "packageRules": [
{ {
"matchManagers": ["github-actions"], "matchManagers": ["github-actions"],

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

@@ -5,17 +5,8 @@
"extends": ["config:best-practices", ":semanticCommitTypeAll(chore)"], "extends": ["config:best-practices", ":semanticCommitTypeAll(chore)"],
"packageRules": [ "packageRules": [
{ {
"description": "Don't update dependencies unless they are at least 7 days old", "matchPackagePatterns": ["^(https:\\/\\/)?gitea\\.t000-n\\.de\/"],
"matchPackageNames": ["*"], "minimumReleaseAge": null
"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"
} }
] ]
} }

View File

@@ -1,6 +1,5 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>t.behrendt/renovate-configs:common"],
"docker-compose": { "docker-compose": {
"digest": { "digest": {
"enabled": true "enabled": true

View File

@@ -1,6 +1,5 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>t.behrendt/renovate-configs:common"],
"helm-values": { "helm-values": {
"fileMatch": ["(^|/)values/.*\\.ya?ml$", "(^|/)values/.*\\.ya?ml\\.gotmpl$"] "fileMatch": ["(^|/)values/.*\\.ya?ml$", "(^|/)values/.*\\.ya?ml\\.gotmpl$"]
}, },

View File

@@ -1,6 +1,5 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>t.behrendt/renovate-configs:common"],
"kubernetes": { "kubernetes": {
"enabled": true, "enabled": true,
"labels": ["deps", "k8s"] "labels": ["deps", "k8s"]

View File

@@ -1,6 +1,7 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "extends": [
"local>t.behrendt/renovate-configs:common",
"local>t.behrendt/renovate-configs:action" "local>t.behrendt/renovate-configs:action"
] ]
} }