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

     1  stages:
     2      - stage1
     3      - stage2
     4      - stage3
     5  step-1:
     6      interruptible: true
     7      script:
     8          - echo "Can be canceled."
     9      stage: stage1
    10  step-2:
    11      script:
    12          - echo "Can not be canceled."
    13      stage: stage2
    14  step-3:
    15      interruptible: true
    16      script:
    17          - echo "Because step-2 can not be canceled, this step can never be canceled, even though it's set as interruptible."
    18      stage: stage3