mirror of
https://github.com/opdavies/build-configs.git
synced 2025-02-08 16:15:03 +00:00
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:
parent
6d7caad37a
commit
e64b340af2
|
@ -110,7 +110,7 @@ final class ConfigDto
|
||||||
public array $drupal;
|
public array $drupal;
|
||||||
|
|
||||||
#[Assert\Collection(
|
#[Assert\Collection(
|
||||||
allowExtraFields: false,
|
allowExtraFields: true,
|
||||||
fields: [
|
fields: [
|
||||||
'createGitHubActionsConfiguration' => new Assert\Optional([
|
'createGitHubActionsConfiguration' => new Assert\Optional([
|
||||||
new Assert\Type('bool'),
|
new Assert\Type('bool'),
|
||||||
|
|
Loading…
Reference in a new issue