github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/gitlab/yaml/testdata/job_keywords/only_except/refs.yaml (about) 1 # https://docs.gitlab.com/ee/ci/yaml/#onlyrefs--exceptrefs 2 3 job1: 4 script: echo 5 only: 6 - main 7 - /^issue-.*$/ 8 - merge_requests 9 10 job2: 11 script: echo 12 except: 13 - main 14 - /^stable-branch.*$/ 15 - schedules