We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22a0ae7 commit 71673f9Copy full SHA for 71673f9
1 file changed
.github/workflows/drupal-update.yml
@@ -119,7 +119,7 @@ jobs:
119
120
- name: Update composer dependencies
121
id: composer-update
122
- run: echo "commit_body=$(composer update --no-scripts | grep -Pzo 'Lock file operations.*(\n|.)*Writing lock file' | tail -n +2 | head -n -1)" >> $GITHUB_OUTPUT
+ 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
123
124
- name: Run Drupal updates
125
run: vendor/bin/drush updb -y
@@ -130,6 +130,8 @@ jobs:
130
- name: Generate composer diff
131
id: composer-diff
132
uses: IonBazan/composer-diff-action@v1
133
+ with:
134
+ base: ${{ github.sha }}
135
136
- name: Check for GrumPHP
137
id: check_grumphp
0 commit comments