mirror of https://github.com/renovatebot/renovate
b667a4b8a3 | ||
---|---|---|
.. | ||
__fixtures__ | ||
extract.spec.ts | ||
extract.ts | ||
index.spec.ts | ||
index.ts | ||
range.spec.ts | ||
range.ts | ||
readme.md | ||
schema.ts |
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:
- Encrypt your CircleCI token with the Renovate encryption page
- Create a new
hostRules
entry in your Renovate config file - 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.