diff options
author | Rémy Coutable <remy@rymai.me> | 2016-09-30 16:51:47 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2016-09-30 16:51:47 +0000 |
commit | 7a5156d6955437e544716e51942ac5ab1645582b (patch) | |
tree | d99ab606d5e87df624e76876147f8b2cf732140b /lib | |
parent | 9a79c9e98079ab21428289af9ec5dd3f0583c375 (diff) | |
parent | e26ea861575d575f5b1daf051c3864831bbcba97 (diff) | |
download | gitlab-ce-7a5156d6955437e544716e51942ac5ab1645582b.tar.gz |
Merge branch '21744-fix-missing-values-in-linter' into 'master'
Add missing values to linter (`only`, `except`) and add new one `Environment`
Closes #21744
See merge request !6276
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ci/gitlab_ci_yaml_processor.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ci/gitlab_ci_yaml_processor.rb b/lib/ci/gitlab_ci_yaml_processor.rb index 0369e80312a..2fd1fced65c 100644 --- a/lib/ci/gitlab_ci_yaml_processor.rb +++ b/lib/ci/gitlab_ci_yaml_processor.rb @@ -4,7 +4,7 @@ module Ci include Gitlab::Ci::Config::Node::LegacyValidationHelpers - attr_reader :path, :cache, :stages + attr_reader :path, :cache, :stages, :jobs def initialize(config, path = nil) @ci_config = Gitlab::Ci::Config.new(config) |