Skip to content
Snippets Groups Projects
Commit 6f735f8b authored by jurgenhaas's avatar jurgenhaas
Browse files

#14 Add option to ignore abandoned packages

parent 550cee9a
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,10 @@ stages:
- if [[ "$IGNORE_COMPOSER_EXTENDED_AUDIT" == "0" ]]; then composer config --no-plugins --no-interaction allow-plugins.mxr576/ddqg-composer-audit true; fi
# Disallow Drupal Dependency Quality Gate Composer Audit plugin
- if [[ "$IGNORE_COMPOSER_EXTENDED_AUDIT" == "1" ]]; then composer config --no-plugins --no-interaction allow-plugins.mxr576/ddqg-composer-audit false; fi
# Composer audit should fail on abandonded packages found
- if [[ "$IGNORE_COMPOSER_ABANDONED_AUDIT" == "0" ]]; then composer config --no-plugins --no-interaction audit.abandoned fail; fi
# Composer audit should only report found abandonded packages
- if [[ "$IGNORE_COMPOSER_ABANDONED_AUDIT" == "1" ]]; then composer config --no-plugins --no-interaction audit.abandoned report; fi
.customreferences:
LanguageFiles: []
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment