Skip to content

Commit b90c0c2

Browse files
committed
Add option for extra drupal settings
1 parent 952e96c commit b90c0c2

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/drupal-update.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ on:
1818
required: false
1919
type: string
2020
default: ../config/sync
21+
drupal-extra-settings:
22+
description: Extra settings to add to settings.php. Do not include opening php tag.
23+
required: false
24+
type: string
25+
default: ''
2126
php-version:
2227
description: The PHP version to run on
2328
required: false
@@ -106,6 +111,8 @@ jobs:
106111
$settings['entity_update_batch_size'] = 50;
107112
$settings['entity_update_backup'] = TRUE;
108113
$settings['migrate_node_migrate_type_classic'] = FALSE;
114+
115+
${{ inputs.drupal-extra-settings }}
109116
write-mode: overwrite
110117

111118
- name: Composer install

0 commit comments

Comments
 (0)