Skip to content
Snippets Groups Projects
Commit 375072aa authored by Katarzyna Kobierska's avatar Katarzyna Kobierska
Browse files

Add missing values to linter

parent f80e7683
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -21,7 +21,7 @@
 
%br
%b Tag list:
= build[:tags]
= build[:tag_list]
%br
%b Refs only:
= build[:only] && build[:only].join(", ")
Loading
Loading
@@ -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]
Loading
Loading
Loading
Loading
@@ -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),
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment