Returns an array of field names to skip in ::isChanged.
array An array of field names.
protected function getFieldsToSkipFromChangedCheck() {
// A list of revision fields which should be skipped from the comparision.
$fields = [
$this
->getEntityType()
->getKey('revision'),
];
return $fields;
}