renovate/lib/modules/manager/circleci
Sebastian Poxhofer b667a4b8a3
test(manager/circleci): remove snapshots and empty matchObjects tests (#30565)
2024-08-05 10:11:22 +00:00
..
__fixtures__ fix(manager/circleci): optional jobs parameter (#30251) 2024-07-19 15:46:44 +00:00
extract.spec.ts test(manager/circleci): remove snapshots and empty matchObjects tests (#30565) 2024-08-05 10:11:22 +00:00
extract.ts fix(manager/circleci): extract executors of CircleCi files again (#30562) 2024-08-02 13:48:53 +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 feat(circleci): target all YAML files in `.circleci` directory (#27809) 2024-03-08 17:56:01 +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(manager/circleci): extract executors of CircleCi files again (#30562) 2024-08-02 13:48:53 +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.