github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/gitlab/yaml/testdata/job_keywords/allow_failure/example-1.yaml (about)

     1  # https://docs.gitlab.com/ee/ci/yaml/#allow_failure
     2  
     3  job1:
     4    stage: test
     5    script:
     6      - execute_script_1
     7  
     8  job2:
     9    stage: test
    10    script:
    11      - execute_script_2
    12    allow_failure: true
    13  
    14  job3:
    15    stage: deploy
    16    script:
    17      - deploy_to_staging
    18    environment: staging