Compare commits

..

1 commit

Author SHA1 Message Date
cc8e737f48
Init
Some checks failed
Checking yaml / Run yamllint (pull_request) Failing after 5s
Checking Renovate configuration / validate (pull_request) Successful in 1m29s
Build talosctl+talhelper+sops image (push on main only) / build (push) Successful in 4m49s
2025-11-24 16:35:04 +11:00
2 changed files with 9 additions and 2 deletions

View file

@ -98,4 +98,4 @@ jobs:
run: | run: |
docker run --rm ${{ env.IMAGE_NAME }}:${{ steps.versions.outputs.tag }} sh -lc \ docker run --rm ${{ env.IMAGE_NAME }}:${{ steps.versions.outputs.tag }} sh -lc \
'talosctl version --client && talhelper --version && sops --version' 'talosctl version --client && talhelper --version && sops --version'
... ...

View file

@ -1,6 +1,5 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"assignees": ["kernald"],
"extends": [ "extends": [
"config:recommended" "config:recommended"
], ],
@ -43,5 +42,13 @@
"extractVersionTemplate": "^v?(?<version>.*)$", "extractVersionTemplate": "^v?(?<version>.*)$",
"autoReplaceStringTemplate": "ARG SOPS_VERSION={{newValue}}" "autoReplaceStringTemplate": "ARG SOPS_VERSION={{newValue}}"
} }
],
"packageRules": [
{
"description": "Group all tool bumps into one PR",
"matchManagers": ["custom.regex"],
"groupName": "talos tools versions",
"prPriority": 0
}
] ]
} }