We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71673f9 commit 2e5d120Copy full SHA for 2e5d120
1 file changed
.github/workflows/drupal-update.yml
@@ -119,7 +119,12 @@ jobs:
119
120
- name: Update composer dependencies
121
id: composer-update
122
- run: echo "commit_body=$(composer update --no-scripts 2>&1 | grep -Pzo 'Lock file operations.*(\n|.)*Writing lock file' | tail -n +2 | head -n -1)" >> $GITHUB_OUTPUT
+ run: |
123
+ {
124
+ echo "commit_body<<EOF"
125
+ composer update --no-scripts 2>&1 | grep -Pzo 'Lock file operations.*(\n|.)*Writing lock file' | tail -n +2 | head -n -1
126
+ echo "EOF"
127
+ } >> $GITHUB_OUTPUT
128
129
- name: Run Drupal updates
130
run: vendor/bin/drush updb -y
0 commit comments