{"id":49502632,"url":"https://github.com/singularit-de/renovate-config","last_synced_at":"2026-05-01T13:04:53.958Z","repository":{"id":349745582,"uuid":"1203674283","full_name":"singularit-de/renovate-config","owner":"singularit-de","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-14T17:15:45.000Z","size":25,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-14T18:14:02.793Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/singularit-de.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-07T09:03:40.000Z","updated_at":"2026-04-14T16:21:50.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/singularit-de/renovate-config","commit_stats":null,"previous_names":["singularit-de/renovate-config"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/singularit-de/renovate-config","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/singularit-de%2Frenovate-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/singularit-de%2Frenovate-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/singularit-de%2Frenovate-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/singularit-de%2Frenovate-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/singularit-de","download_url":"https://codeload.github.com/singularit-de/renovate-config/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/singularit-de%2Frenovate-config/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32497838,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-05-01T13:04:53.830Z","updated_at":"2026-05-01T13:04:53.951Z","avatar_url":"https://github.com/singularit-de.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# renovate-config\n\nShareable [Renovate](https://docs.renovatebot.com/) config presets for singularIT.\n\n## Usage\n\n### Default preset\n\n```json\n{\n  \"$schema\": \"https://docs.renovatebot.com/renovate-schema.json\",\n  \"extends\": [\n    \"github\u003esingularit-de/renovate-config#0.0.10\"\n  ]\n}\n```\n\n### GitLab (self-hosted) preset\n\n```json\n{\n  \"$schema\": \"https://docs.renovatebot.com/renovate-schema.json\",\n  \"extends\": [\n    \"github\u003esingularit-de/renovate-config:gitlab#0.0.10\"\n  ]\n}\n```\n\n### Docker preset\n\nIncludes all Docker sub-presets (base + versions).\n\n```json\n{\n  \"$schema\": \"https://docs.renovatebot.com/renovate-schema.json\",\n  \"extends\": [\n    \"github\u003esingularit-de/renovate-config:docker#0.0.10\"\n  ]\n}\n```\n\nSub-presets can also be used individually:\n\n- `:docker/base` — digest pinning and major updates\n- `:docker/envVersions` — detects `_VERSION` variables in Dockerfiles via `# renovate:` comments\n\nExample Dockerfile usage for `docker/envVersions`:\n\n```dockerfile\n# renovate: datasource=docker depName=node versioning=docker\nENV NODE_VERSION=18.17.0\n\n# renovate: datasource=docker depName=php versioning=docker\nARG PHP_VERSION=8.2\n```\n\n\u003e [!WARNING]\n\u003e Do not use `# renovate:` comments for variables that are used in a `FROM` directive. Renovate has native support for detecting and updating Docker image references in `FROM` lines. Adding a `# renovate:` comment in this case will override the native handling and **disable digest pinning** for that image.\n\u003e\n\u003e ```dockerfile\n\u003e # Bad – unnecessary, Renovate already handles this natively\n\u003e # renovate: datasource=docker depName=node versioning=docker\n\u003e ARG NODE_VERSION=18.17.0\n\u003e FROM node:${NODE_VERSION}\n\u003e\n\u003e # Good – Renovate updates the FROM reference automatically\n\u003e ARG NODE_VERSION=18.17.0\n\u003e FROM node:${NODE_VERSION}\n\u003e ```\n\n### GitLab preset\n\nEnables OSV vulnerability alerts and detects `_VERSION` variables in GitLab CI pipelines via `# renovate:` comments. This is needed because Renovate's native `gitlabci` manager does not resolve variables used in `image:` directives.\n\nExample `.gitlab-ci.yml` usage:\n\n```yaml\nvariables:\n  # renovate: datasource=docker depName=node versioning=docker\n  NODE_VERSION: \"18.17.0\"\n  # renovate: datasource=docker depName=python versioning=docker\n  PYTHON_VERSION: \"3.12.0\"\n\nbuild:\n  image: node:$NODE_VERSION\n  script:\n    - npm ci \u0026\u0026 npm run build\n```\n\n## Presets\n\n| Preset    | Description                                                                                                          |\n|-----------|----------------------------------------------------------------------------------------------------------------------|\n| `default` | Combines base, docker, python, and gitlab presets                                                                    |\n| `base`    | Extends `config:best-practices`, `:rebaseStalePrs`, and `mergeConfidence:all-badges` with assignees from code owners |\n| `docker`  | Combines `docker/base` and `docker/envVersions`                                                                         |\n| `docker/base` | Enables `docker:pinDigests` and `docker:enableMajor`                                                             |\n| `docker/envVersions` | Detects and updates `_VERSION` variables (ENV/ARG) in Dockerfiles via `# renovate:` comments              |\n| `python`  | Configures `pip_requirements` file matching                                                                          |\n| `gitlab`  | Enables OSV vulnerability alerts and detects `_VERSION` variables in GitLab CI pipelines via `# renovate:` comments  |\n| `node`    | Sets `rangeStrategy` to `bump` for Node.js projects                                                                 |\n\n## Releasing\n\n```bash\nnpm run release\n```\n\nUses [bumpp](https://github.com/antfu-collective/bumpp) to interactively bump the version, create a git tag, and push to\norigin. A GitHub Actions workflow then creates a GitHub Release.\n\nVersion pins in transitive config references (e.g. `github\u003esingularit-de/renovate-config:base#0.0.10 in `default.json`)\nare automatically updated to the new version during the bump.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsingularit-de%2Frenovate-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsingularit-de%2Frenovate-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsingularit-de%2Frenovate-config/lists"}