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

     1  default:
     2      image:
     3          name: ruby:3.0
     4      interruptible: true
     5      retry: 2
     6  job1:
     7      inherit:
     8          default: false
     9      script:
    10          - echo "This job does not inherit any default keywords."
    11  job2:
    12      inherit:
    13          default:
    14              - retry
    15              - image
    16      script:
    17          - echo "This job inherits only the two listed default keywords. It does not inherit 'interruptible'."