# Change one value

# INPUT

foo:
  bar: 10
  some_key: this will be intact

# SCRIPT

if KEY == "foo.bar" then
  set(VALUE * 2)
end

# EXPECT

foo:
  bar: 20
  some_key: this will be intact
