renovate/lib/modules/manager/circleci
Steven Davidovitz ffa4333a38
fix(circleci): parsing of inline orb definitions (#31843)
2024-12-14 17:55:06 +00:00
..
__fixtures__ fix(manager/circleci): optional jobs parameter (#30251) 2024-07-19 15:46:44 +00:00
extract.spec.ts fix(circleci): parsing of inline orb definitions (#31843) 2024-12-14 17:55:06 +00:00
extract.ts fix(circleci): parsing of inline orb definitions (#31843) 2024-12-14 17:55:06 +00:00
index.spec.ts feat(circleci): target all YAML files in `.circleci` directory (#27809) 2024-03-08 17:56:01 +00:00
index.ts docs(managers): add missing url and displayName (#32621) 2024-12-01 08:47:27 +00:00
range.spec.ts feat(config)!: default to rangeStrategy=auto, prefer update-lockfile (#19942) 2023-03-10 09:25:45 +01:00
range.ts feat(config)!: default to rangeStrategy=auto, prefer update-lockfile (#19942) 2023-03-10 09:25:45 +01:00
readme.md docs: fix versioning links (#28341) 2024-04-11 13:23:20 +00:00
schema.ts fix(circleci): parsing of inline orb definitions (#31843) 2024-12-14 17:55:06 +00:00

readme.md

The circleci manager extracts both docker as well as orb datasources from CircleCI config files.

If you need to change the versioning format, read the versioning documentation to learn more.

Private orbs

To get private orbs working you should:

  1. Encrypt your CircleCI token with the Renovate encryption page
  2. Create a new hostRules entry in your Renovate config file
  3. Put the encrypted token in the token field

The end-result should look like this:

{
  "hostRules": [
    {
      "matchHost": "circleci.com",
      "authType": "Token-Only",
      "encrypted": {
        "token": "****"
      }
    }
  ]
}

This config strips the Bearer/Basic prefix from the authorization header.