We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 952e96c commit b90c0c2Copy full SHA for b90c0c2
1 file changed
.github/workflows/drupal-update.yml
@@ -18,6 +18,11 @@ on:
18
required: false
19
type: string
20
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: ''
26
php-version:
27
description: The PHP version to run on
28
@@ -106,6 +111,8 @@ jobs:
106
111
$settings['entity_update_batch_size'] = 50;
107
112
$settings['entity_update_backup'] = TRUE;
108
113
$settings['migrate_node_migrate_type_classic'] = FALSE;
114
+
115
+ ${{ inputs.drupal-extra-settings }}
109
116
write-mode: overwrite
110
117
118
- name: Composer install
0 commit comments