Skip to main content

Can I delete an Orb?

Deleting an orb:

CircleCI does not support deleting an orb, as publicly released orbs are potentially dependencies for other CircleCI user’s builds. Orbs are SemVer 4 compliant, and each published version is immutable. Allowing for deletions would make users susceptible to unexpected loss of functionality.

Best Practices

Do not publish sensitive data within an orb, even a private orb since CircleCI does not support orb deletion, even in the case of accidental publishing of sensitive information.

We recommend un-listing an orb whenever possible

You can un-list Orbs from the public registry using the CircleCI CLI with the following command:

circleci orb unlist <namespace>/<orb> <true|false> [flags]

More information on un-listing orbs is available here: How can I make my orbs private?

If you would like to see orb deletion functionality in CircleCI, please leave any feedback on this feature request.

Did this answer your question?