Version Groups
version.groups defines batches of related version entries. Groups let you apply shared policy and limit commands such as lock, update, status, and diff with --group.
Configuration
atmos.yaml
Fields
ecosystems- Match entries by ecosystem.
datasources- Match entries by datasource.
providers- Match entries by provider name.
patterns- Entry-name patterns included in the group.
exclude_patterns- Entry-name patterns excluded from the group.
update,include,exclude,prerelease,labels- Policy applied to entries that match the group.
Examples
version:
groups:
github_actions:
ecosystems: [github/actions]
update:
strategy: minor
cooldown: 3d
exclude:
- "v4.0.0"
atmos version track status prod --group=github_actions
atmos version track update prod --group=github_actions