Compare commits

...

7 Commits

Author SHA1 Message Date
e425132e54 ci: pin varios actions to a proper semver version (#39)
All checks were successful
CD / Release (push) Successful in 6s
Reviewed-on: #39
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2026-02-14 19:05:25 +01:00
e8e303565a fix: fix internal package name regex and field and remove package groups (#38)
All checks were successful
CD / Release (push) Successful in 6s
Dropping the "matchManagers" as we actually want to match anything, regardless of manager.
Also fixing the regex, wasn't valid before.
Also renaming the "matchPackagePatterns" to "matchPackageNames" as the previous value isn't supported anymore..

Since it's JSON, renovate needs the regex to be quoted. See example:

```json
{
  "packageRules": [
    {
      "matchDatasources": ["npm"],
      "matchPackageNames": ["/^angular/"],
      "groupName": "Angular"
    }
  ]
}
```

Reviewed-on: #38
Reviewed-by: branch-buddy <branch-buddy@t00n.de>
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2026-02-14 12:57:41 +01:00
cd91321c5b feat: chage minimumReleaseAgeBehaviour to strict (#36)
All checks were successful
CD / Release (push) Successful in 6s
Reviewed-on: #36
Co-authored-by: t.behrendt <t.behrendt@t00n.de>
Co-committed-by: t.behrendt <t.behrendt@t00n.de>
2026-02-10 08:25:57 +01:00
99a56f3e9b fix: minimum release age (#35)
All checks were successful
CD / Release (push) Successful in 6s
Reviewed-on: #35
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2026-02-09 19:53:01 +01:00
5d76d05b5d feat: add minimumReleaseAge for all deps (#34)
All checks were successful
CD / Release (push) Successful in 6s
Reviewed-on: #34
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2026-02-09 19:43:56 +01:00
950bdb12f4 fix: match managers in ignore of cooldown for local deps
All checks were successful
CD / Release (push) Successful in 6s
Reviewed-on: #33
Reviewed-by: branch-buddy <branch-buddy@t00n.de>
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2026-02-08 20:37:01 +01:00
7a4f5cb141 feat: ignore cooldown for internal deps (#32)
All checks were successful
CD / Release (push) Successful in 15s
Ignoring min release age for any internal deps and have every rule extend the common package.

Reviewed-on: #32
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2026-02-08 20:01:34 +01:00
8 changed files with 20 additions and 5 deletions

View File

@@ -11,7 +11,7 @@ jobs:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
- name: Increment tag

View File

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

View File

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

View File

@@ -2,5 +2,18 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"dependencyDashboard": true,
"semanticCommits": "enabled",
"extends": ["config:best-practices", ":semanticCommitTypeAll(chore)"]
"extends": ["config:best-practices", ":semanticCommitTypeAll(chore)"],
"packageRules": [
{
"description": "Don't update dependencies unless they are at least 7 days old",
"minimumReleaseAge": "7 days",
"minimumReleaseAgeBehaviour": "timestamp-required",
"internalChecksFilter": "strict"
},
{
"description": "Exempt local dependencies from the minimum release age",
"matchPackageNames": ["/^(https:\\/\\/)?gitea\\.t000-n\\.de/"],
"minimumReleaseAge": null
}
]
}

View File

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

View File

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

View File

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

View File

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