Skip to content

Commit

Permalink
Merge branch 'main' of github.com:Lullabot/drainpipe into issue-370-a…
Browse files Browse the repository at this point in the history
…dd-validation-and-warnings-for-composer-patches-configuration
  • Loading branch information
beto-aveiga committed Oct 4, 2024
2 parents 0f9280d + 353de07 commit 92d3c4d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"vlucas/phpdotenv": "^4|^5"
},
"require-dev": {
"composer/composer": "^2.7.9",
"composer/composer": "^2.8.1",
"phpunit/phpunit": "^9.6.21"
},
"extra": {
Expand Down
2 changes: 1 addition & 1 deletion drainpipe-dev/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"vincentlanglet/twig-cs-fixer": "^3.1.0"
},
"require-dev": {
"composer/composer": "^2.7.9"
"composer/composer": "^2.8.1"
},
"bin": [
"bin/drainpipe-convert-to-junit-xml"
Expand Down
5 changes: 5 additions & 0 deletions scaffold/Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ tasks:
cmds:
# @see https://architecture.lullabot.com/adr/20211026-one-time-login-first-drupal-user-account/
- ./vendor/bin/drush user:unblock --uid=1
- |
[ $(drush core:requirements --severity=2 --format=tsv | wc -l) -lt 1 ] \
&& echo "🟢 Status Report page checked" \
|| echo "🔴 Status Report page check failed"
# Ignore the below modules in sites/default/settings.php e.g.
# $settings['config_exclude_modules'] = ['stage_file_proxy', 'field_ui', 'views_ui'];
# - ./vendor/bin/drush pm:enable stage_file_proxy views_ui field_ui -y
Expand Down
5 changes: 5 additions & 0 deletions tests/fixtures/drainpipe-task-upgrade/Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ tasks:
cmds:
# @see https://architecture.lullabot.com/adr/20211026-one-time-login-first-drupal-user-account/
- ./vendor/bin/drush user:unblock --uid=1
- |
[ $(drush core:requirements --severity=2 --format=tsv | wc -l) -lt 1 ] \
&& echo "🟢 Status Report page checked" \
|| echo "🔴 Status Report page check failed"
# Ignore the below modules in sites/default/settings.php e.g.
# $settings['config_exclude_modules'] = ['stage_file_proxy', 'field_ui', 'views_ui'];
# - ./vendor/bin/drush pm:enable stage_file_proxy views_ui field_ui -y
Expand Down

0 comments on commit 92d3c4d

Please sign in to comment.