{"id":29675778,"url":"https://github.com/oxidecomputer/renovate-config","last_synced_at":"2025-07-22T23:38:43.726Z","repository":{"id":45060330,"uuid":"445689013","full_name":"oxidecomputer/renovate-config","owner":"oxidecomputer","description":"Oxide's shared renovate configuration","archived":false,"fork":false,"pushed_at":"2025-07-14T03:12:13.000Z","size":78,"stargazers_count":6,"open_issues_count":6,"forks_count":0,"subscribers_count":20,"default_branch":"main","last_synced_at":"2025-07-14T06:03:08.331Z","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":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/oxidecomputer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2022-01-08T00:38:23.000Z","updated_at":"2025-06-24T04:58:59.000Z","dependencies_parsed_at":"2022-09-02T22:51:18.206Z","dependency_job_id":"087971fe-eb44-445f-a5d7-be83d4abc90c","html_url":"https://github.com/oxidecomputer/renovate-config","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/oxidecomputer/renovate-config","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxidecomputer%2Frenovate-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxidecomputer%2Frenovate-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxidecomputer%2Frenovate-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxidecomputer%2Frenovate-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oxidecomputer","download_url":"https://codeload.github.com/oxidecomputer/renovate-config/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oxidecomputer%2Frenovate-config/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266591233,"owners_count":23953082,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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":"2025-07-22T23:38:35.533Z","updated_at":"2025-07-22T23:38:43.712Z","avatar_url":"https://github.com/oxidecomputer.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# renovate-config\n\nOxide's self-hosted Renovate runner and shared configuration\n\n## Running Renovate against a new repository\n\nRenovate is available as a Mend hosted service or a self-hosted GitHub action. The [Renovate docs](https://docs.renovatebot.com/getting-started/use-cases/) describe the process of enabling the Mend hosted variant. To enable the Oxide self-hosted version the repository will need to be added to the allow list in `runner/global.json`. Once the change is merged to main, our self-hosted version of Renovate will start running against the repository.\n\n### Quick-Start: Setup for Oxide self-hosted Renovate\n\nAssuming you want an Oxide repository to be managed by our self-hosted renovate, you can perform the following steps:\n\n1. Add the following file as `renovate.json` into your repository\n\n```json\n{\n  \"$schema\": \"https://docs.renovatebot.com/renovate-schema.json\",\n  \"extends\": [\n    \"local\u003eoxidecomputer/renovate-config\"\n  ]\n}\n```\n2. Add your repository name to `runner/global.json` within this repository.\n3. Look for an issue called \"Dependency Dashboard\" which renovate should open within your repository. If this exists, your integration was successful.\n\n### Why use the self-hosted version?\n\nIf your repository requires the use of post upgrade scripts, then you will need to use the self-hosted version instead of the Mend hosted version. Our self-hosted version also declares an allow list of expected script locations that are allowed to be run: [global config](runner/global.json). To make this easier you can extend the `post-upgrade` configuration file from this repository in your `renovate.json` configuration file.\n\n## Default configuration\n\nAny presets that you want to enable across all repos with Renovate enabled in Oxide's GitHub organization can be added to `default.json`. Avoid putting any rules directly in default, instead using separate preset files for a cleaner configuration.\n\n## Rust configuration\n\nSee [`rust/README.adoc`](rust/README.adoc).\n\n## Running post upgrade scripts\n\nTo run post-upgrade scripts:\n\n1. Check in an executable script at the location `tools/renovate-post-upgrade.sh` in your repository.\n2. Ensure you're using self-hosted Renovate, and add your repository to the list in the [global config](runner/global.json).\n3. In your repository's `renovate.json`, extend from `local\u003eoxidecomputer/renovate-config:post-upgrade`.\n\n## More info\n\nTo learn more about how to include these shared config files in your own Renovate setup see Renovate's [preset hosting](https://docs.Renovatebot.com/config-presets/#preset-hosting) documentation.\n\n## Future plans\n\n### Pinning GitHub Actions digests\n\nWe may make it a requirement very soon for GitHub Actions digests to be pinned to a hash. To enable\npinning, plus automerging updates to some allowlisted actions (to reduce developer burden), extend\nfrom `local\u003eoxidecomputer/renovate-config//actions/pin` in your `renovate.json`.\n\nIf you have access to Oxide RFDs, see [RFD 434](https://rfd.shared.oxide.computer/rfd/0434) for more.\n\n### Automatic merges\n\nWe currently do not perform any automatic merges of dependency PRs, but in the near future we might\nwant to enable automerges for allowlisted crates on an opt-in basis. Instructions to do so will be\nadded here.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foxidecomputer%2Frenovate-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foxidecomputer%2Frenovate-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foxidecomputer%2Frenovate-config/lists"}