Allow extra fields

Since removing `useNewDatabaseCredentials`, projects with it in its
build.yaml file were failing as it was an additional value.

Allowing extra fields prevents the project from erroring.
This commit is contained in:
Oliver Davies 2024-03-01 20:31:21 +00:00
parent 6d7caad37a
commit e64b340af2

View file

@ -110,7 +110,7 @@ final class ConfigDto
public array $drupal;
#[Assert\Collection(
allowExtraFields: false,
allowExtraFields: true,
fields: [
'createGitHubActionsConfiguration' => new Assert\Optional([
new Assert\Type('bool'),