Skip to content
Snippets Groups Projects
Commit fac8b8a0 authored by catch's avatar catch
Browse files

Merge branch '3468848-allow-child-jobs' into '11.x'

Trigger the child job as soon as phpcs and cspell have run.

See merge request !9249
parents 8705b9ab 1c3e60cd
No related branches found
No related tags found
No related merge requests found
Pipeline #257803 passed
Pipeline: drupal

#257811

    ......@@ -27,6 +27,8 @@
    ################
    workflow:
    auto_cancel:
    on_job_failure: all
    rules:
    # These 3 rules from https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Workflows/MergeRequest-Pipelines.gitlab-ci.yml
    # Run on merge requests
    ......@@ -144,6 +146,11 @@ default:
    .default-stage: &default-stage
    stage: 🗜️ Test
    needs:
    # Start the child jobs as soon as phpcs passes.
    - "🧹 PHP Coding standards (PHPCS)"
    - "📔 Spell-checking"
    trigger:
    # Rely on the status of the child pipeline.
    strategy: depend
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment