I have a yaml file looks like
part1:
name: tom
some_field: true
part2:
name: jerry
other_field: true
and I would like to change the value of all keys that end with field into false, that is, converting the previous YAML file into
part1:
name: tom
some_field: false
part2:
name: jerry
other_field: false
Not sure how to do that yq