https://github.com/klutchell/renovate-config
Shared renovate configuration and GitHub Action
https://github.com/klutchell/renovate-config
Last synced: 3 months ago
JSON representation
Shared renovate configuration and GitHub Action
- Host: GitHub
- URL: https://github.com/klutchell/renovate-config
- Owner: klutchell
- Created: 2022-05-17T02:09:27.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2026-03-02T06:29:28.000Z (4 months ago)
- Last Synced: 2026-03-02T11:08:35.857Z (4 months ago)
- Size: 700 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# renovate-config
Shared renovate configuration and GitHub Action
## Custom Managers
### balena-cloud
This is a customer manager & datasource to query the balenaCloud application releases
and manage bh.cr registry tags.
Any of the following matches:
```Dockerfile
# Note that tags following the : are ignored by the bh.cr registry, so we use them for semver tracking
FROM bh.cr/gh_klutchell/tailscale-amd64/94bc62ba78e5d0611338535ce72054df:1.82.5-rev1
FROM bh.cr/gh_klutchell/tailscale-amd64/94bc62ba78e5d0611338535ce72054df
FROM bh.cr/gh_klutchell/tailscale-amd64:1.82.5-rev1
FROM bh.cr/gh_klutchell/tailscale-amd64/1.82.5-rev1
```
Will be replaced with:
```Dockerfile
# Note that tags following the : are ignored by the bh.cr registry, so we use them for semver tracking
FROM bh.cr/gh_klutchell/tailscale-amd64/94bc62ba78e5d0611338535ce72054df:1.82.5-rev1
```
Multiarch example usage:
```Dockerfile
# Dockerfile.template
ARG BALENA_ARCH=%%BALENA_ARCH%%
FROM bh.cr/gh_klutchell/tailscale-amd64:1.82.5-rev1 AS balena-tailscale-amd64
FROM bh.cr/gh_klutchell/tailscale-aarch64:1.82.5-rev1 AS balena-tailscale-aarch64
FROM bh.cr/gh_klutchell/tailscale-armv7hf:1.82.5-rev1 AS balena-tailscale-armv7hf
# hadolint ignore=DL3006
FROM balena-tailscale-${BALENA_ARCH}
```