Skip to content

avr settings

View and toggle cache and runner settings.

Terminal window
avr settings [OPTIONS] COMMAND [ARGS]...

List settings with their current values and source.

Terminal window
avr settings list [OPTIONS]
Terminal window
Examples:
avr settings list --org org-abc123
avr settings list --org org-abc123 --repo rep-xyz789
avr settings list --repo avrea-com/avrea-core
avr settings list --prefix cache.
avr settings list --json key,value,source
Terminal window
JSON FIELDS
key, source, value

Options

  • --org <TEXT> — Organization ID. Uses default org if not specified.
  • --repo <TEXT> — Repository (org/repo or rep-xxx). Auto-detected from git remote if omitted.
  • --prefix <TEXT> — Filter by key prefix (e.g. 'cache.').
  • --web — Open in browser.
  • --json <TEXT> — Output JSON. Pass comma-separated field names, "*" for all fields, or "?" to list available fields.
  • -q, --jq <TEXT> — Filter --json output through a jq expression.

Remove a setting override, reverting to the inherited or default value.

Terminal window
avr settings reset [OPTIONS] KEY
Terminal window
Examples:
avr settings reset cache.gha.enabled --repo rep-xyz789
avr settings reset cache.packages.enabled --org org-abc123

Arguments

  • KEY

Options

  • --org <TEXT> — Organization ID. Uses default org if not specified.
  • --repo <TEXT> — Repository (org/repo or rep-xxx). Auto-detected from git remote if omitted.

List available setting definitions.

Terminal window
avr settings schema [OPTIONS]
Terminal window
Examples:
avr settings schema
avr settings schema --prefix cache. --scope repository
avr settings schema --json '*'
Terminal window
JSON FIELDS
choices, default, description, inherits, key, max_value, min_value,
scopes, value_type

Options

  • --prefix <TEXT> — Filter by key prefix (e.g. 'cache.').
  • --scope <CHOICE> — Filter by scope. (choices: repository, organization)
  • --json <TEXT> — Output JSON. Pass comma-separated field names, "*" for all fields, or "?" to list available fields.
  • -q, --jq <TEXT> — Filter --json output through a jq expression.

Set a setting value.

Terminal window
avr settings set [OPTIONS] KEY VALUE

VALUE is parsed as a boolean (true/false) or integer when possible, otherwise treated as a string.

Terminal window
Examples:
avr settings set cache.gha.enabled false --org org-abc123
avr settings set cache.packages.enabled true --repo rep-xyz789

Arguments

  • KEY
  • VALUE

Options

  • --org <TEXT> — Organization ID. Uses default org if not specified.
  • --repo <TEXT> — Repository (org/repo or rep-xxx). Auto-detected from git remote if omitted.