summaryrefslogtreecommitdiff
path: root/spec/frontend/editor/schema/ci/yaml_tests/positive_tests/filter.yml
blob: 2b29c24fa3ca823c8a9df5568f0b41e2985490aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Covers https://gitlab.com/gitlab-org/gitlab/-/merge_requests/79335
deploy-template:
  script:
    - echo "hello world"
  only:
    - foo
  except:
    - bar

# null value allowed
deploy-without-only:
  extends: deploy-template
  only:

# null value allowed
deploy-without-except:
  extends: deploy-template
  except: