Skip to content
Snippets Groups Projects
Verified Commit b74565b0 authored by Théodore Biadala's avatar Théodore Biadala
Browse files

Issue #3468848 by catch: Allow child jobs to run as soon as phpcs and spellcheck are completed

(cherry picked from commit c1463afb)
parent 4c926ad2
No related branches found
No related tags found
3 merge requests!11769Issue #3517987: Add option to contextual filters to encode slashes in query parameter.,!11185Issue #3477324 by andypost, alexpott: Fix usage of str_getcsv() and fgetcsv() for PHP 8.4,!9944Issue #3483353: Consider making the createCopy config action optionally fail...
Pipeline #258985 passed with warnings
Pipeline: drupal

#259016

    Pipeline: drupal

    #259009

      Pipeline: drupal

      #259000

        +1
        ......@@ -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
        ......@@ -114,6 +116,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.
        Finish editing this message first!
        Please register or to comment