repos

Deprecated: use the utils feature for multi-repository tooling
WarningDeprecated

The repos feature is retained for backwards compatibility. Use utils for new configurations; it installs the same repos CLI and can also install setupmjr.

Existing Usage

Existing configurations can continue to use the feature:

{
  "features": {
    "ghcr.io/MiguelRodo/DevContainerFeatures/repos:3": {
      "runOnStart": false
    }
  }
}

Options

Option Type Default Description
runOnStart boolean false Automatically run repos clone when the container starts.

Migration to utils

Replace the feature identifier and keep runOnStart if you use it:

{
  "features": {
    "ghcr.io/MiguelRodo/DevContainerFeatures/utils:1": {
      "installRepos": true,
      "runOnStart": false
    }
  }
}

utils enables installRepos and installSetupmjr by default.

Source

src/repos