Commit 906c7a97 authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

docs: defining TBC stages is no longer required

close #41
parent 1301f972
Loading
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -93,11 +93,13 @@ mapped on the generic pipeline depicted in the previous chapter:
    
    We chose to keep those names anyway to stay compatible with GitLab Auto DevOps that has the same philosophy.

Your `.gitlab-ci.yml` file will have to declare **all stages required by included templates**, in the right order.
!!! question "Can I add my own stages?"

!!! TIP
    If you're only using the generic _to be continuous_ pipeline stages, you won't have anything to do as all our templates 
    define those stages for you.

    Instead of keeping track of required stages, simply **add them all** in your `.gitlab-ci.yml`:
    But if you're willing to add you own, then you'll have to override the stages in your `.gitlab-ci.yml` file, 
    **inserting yours**:

    ```yaml
    stages:
@@ -108,6 +110,7 @@ Your `.gitlab-ci.yml` file will have to declare **all stages required by include
      - infra
      - deploy
      - acceptance
      - my-pre-publish # 👈 insert your extra stage(s)
      - publish
      - infra-prod
      - production