0
0
Fork 0
mirror of https://github.com/renovatebot/renovate.git synced 2025-05-14 08:22:26 +00:00
renovatebot_renovate/lib/modules/manager/circleci
RahulGautamSingh bc7d0595d0
feat(config): managerFilePatterns (#34615)
Co-authored-by: Sebastian Poxhofer <secustor@users.noreply.github.com>
Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
Co-authored-by: Rhys Arkins <rhys@arkins.net>
2025-05-04 08:30:24 +00:00
..
__fixtures__ fix(manager/circleci): optional jobs parameter (#30251) 2024-07-19 15:46:44 +00:00
extract.spec.ts refactor(circleci): Simplify CircleCI extraction (#35233) 2025-04-08 15:44:22 +00:00
extract.ts refactor(circleci): Simplify CircleCI extraction (#35233) 2025-04-08 15:44:22 +00:00
index.spec.ts feat(config): managerFilePatterns (#34615) 2025-05-04 08:30:24 +00:00
index.ts feat(config): managerFilePatterns (#34615) 2025-05-04 08:30:24 +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 refactor(circleci): Simplify CircleCI extraction (#35233) 2025-04-08 15:44:22 +00:00

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.