Commit 375072aa authored by Katarzyna Kobierska's avatar Katarzyna Kobierska

Add missing values to linter

parent f80e7683
......@@ -21,7 +21,7 @@
%br
%b Tag list:
= build[:tags]
= build[:tag_list]
%br
%b Refs only:
= build[:only] && build[:only].join(", ")
......@@ -29,6 +29,9 @@
%b Refs except:
= build[:except] && build[:except].join(", ")
%br
%b Environment:
= build[:environment]
%br
%b When:
= build[:when]
- if build[:allow_failure]
......
......@@ -59,6 +59,8 @@ module Ci
tag_list: job[:tags] || [],
name: job[:name].to_s,
allow_failure: job[:allow_failure] || false,
only: job[:only],
except: job[:except],
when: job[:when] || 'on_success',
environment: job[:environment_name],
yaml_variables: yaml_variables(name),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment