Find pattern in config.yaml
files (recursively) and check when they were last changed according to system / to git
# git
grep -rl --include="config.yaml" "website:" | xargs -n1 git log -1 --pretty="format:%ci"
# system
grep -rl --include="config.yaml" "website:" | xargs stat -c "%y" {}