{"id":50793162,"url":"https://github.com/archgate/renovate-config","last_synced_at":"2026-06-12T12:31:00.643Z","repository":{"id":349131332,"uuid":"1201170958","full_name":"archgate/renovate-config","owner":"archgate","description":"Shared Renovate configuration for the archgate organization","archived":false,"fork":false,"pushed_at":"2026-05-28T20:46:22.000Z","size":27,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-28T22:18:53.575Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/archgate.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":".github/CODEOWNERS","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-04T09:57:28.000Z","updated_at":"2026-05-28T20:46:26.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/archgate/renovate-config","commit_stats":null,"previous_names":["archgate/renovate-config"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/archgate/renovate-config","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/archgate%2Frenovate-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/archgate%2Frenovate-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/archgate%2Frenovate-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/archgate%2Frenovate-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/archgate","download_url":"https://codeload.github.com/archgate/renovate-config/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/archgate%2Frenovate-config/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34245217,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-12T02:00:06.859Z","response_time":109,"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-06-12T12:31:00.519Z","updated_at":"2026-06-12T12:31:00.630Z","avatar_url":"https://github.com/archgate.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# @archgate/renovate-config\n\nShared [Renovate](https://docs.renovatebot.com/) configuration for all repositories in the archgate organization.\n\n## Usage\n\nEach repository should have a `renovate.json` containing:\n\n```json\n{\n  \"$schema\": \"https://docs.renovatebot.com/renovate-schema.json\",\n  \"extends\": [\"local\u003earchgate/renovate-config\"]\n}\n```\n\nRepo-specific overrides can be added alongside the `extends` array.\n\n## What's included\n\n### Base configuration\n\nExtends [`config:best-practices`](https://docs.renovatebot.com/presets-config/#configbest-practices), which includes:\n\n- `config:recommended` (dependency dashboard, semantic commits, monorepo grouping)\n- Pin devDependencies\n- Pin Docker image digests\n- Pin GitHub Action digests\n- npm minimum release age (overridden to **7 days** — see below)\n- Weekly lock file maintenance\n- Config migration PRs\n\n### Security hardening\n\n- **7-day minimum release age** for all updates (overrides the 3-day `config:best-practices` default)\n- **OpenSSF Scorecard** badges on PRs for supply-chain visibility\n- **OSV vulnerability alerts** enabled\n- **Vulnerability PRs** skip both the release-age delay **and** the monthly schedule (`schedule: [\"at any time\"]`), and get priority `10`\n- **GitHub Actions pinned to SHA digests**\n- **Major updates require dashboard approval** before PRs are created\n\n### Noise reduction\n\n- **Non-major devDependencies grouped** into a single PR per repo\n- **Docs dependencies grouped** into a single PR\n- **GitHub Actions grouped** into a single PR\n- **Java/Maven dependencies grouped** into a single PR (all update types)\n- **.NET/NuGet dependencies grouped** into a single PR (all update types)\n- **Python dependencies grouped** into a single PR (all update types)\n- **Go module dependencies grouped** into a single PR (all update types)\n- **Ruby/Bundler dependencies grouped** into a single PR (all update types)\n- **Linters, formatters, and type packages auto-merged** on minor/patch\n- **Schedule:** PRs created **only on the last Sunday of the month** (Sunday between the 25th and 31st, before 6am Europe/Oslo)\n- **Automerges** are batched into the same monthly window\n- **Rate limited:** max 20 concurrent PRs, no per-hour cap (so the full monthly batch can land in one run)\n\n## Overriding for a specific repo\n\nAdd `packageRules` or `ignorePresets` in the repo's own `renovate.json`:\n\n```json\n{\n  \"$schema\": \"https://docs.renovatebot.com/renovate-schema.json\",\n  \"extends\": [\"local\u003earchgate/renovate-config\"],\n  \"packageRules\": [\n    {\n      \"description\": \"Repo-specific rule\",\n      \"matchPackageNames\": [\"some-package\"],\n      \"automerge\": false\n    }\n  ]\n}\n```\n\n## Presets reference\n\n| Preset | Purpose |\n| --- | --- |\n| `config:best-practices` | Recommended + security defaults |\n| `security:openssf-scorecard` | Supply-chain scorecard badges |\n| `:approveMajorUpdates` | Dashboard gate for major bumps |\n| `:enableVulnerabilityAlerts` | Vuln alert PRs |\n| `:automergeRequireAllStatusChecks` | All CI must pass before automerge |\n| `:rebaseStalePrs` | Keep PRs up to date with base |\n| `:timezone(Europe/Oslo)` | Schedule timezone |\n| `:gitSignOff` | Add DCO sign-off line to commits |\n\nTo opt out of the monthly schedule for a specific repo, override `schedule` and `automergeSchedule` in the repo config.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farchgate%2Frenovate-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farchgate%2Frenovate-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farchgate%2Frenovate-config/lists"}