When I edit automations using the UI, the auotmations.yaml
will alternate string characters from single quote characters (’) to double quite characters ("). Functionally, this makes no real difference but it makes for tons of noise when committing to my local git repo.
Example:
- id: '1688473077715'
alias: Automation 1
description: 'test'
Changes to:
- id: "1688473077715"
alias: Automation 1
description: "test"
I haven’t noticed a pattern as to why it does this. The first time it happened, I was hoping the format would be “normalized” to the way HA wanted it to be. However, it keeps toggling. When it happens, it’s always the entire file – not just the automation I modified (which would be far less annoying).
Any thoughts or suggestions?