diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-07-16 20:10:22 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-07-16 20:25:30 +0200 |
commit | 9912ad261f696ef92657171396774607af7f1893 (patch) | |
tree | 9268e628db419c2c88b5bb64a6ce478b6bfe3163 /app/services/ci | |
parent | 50abec8ca36c5cbdb1f7878b3ac956211fc67d3d (diff) | |
download | gitlab-ce-9912ad261f696ef92657171396774607af7f1893.tar.gz |
Store when and yaml variables in builds table
Diffstat (limited to 'app/services/ci')
-rw-r--r-- | app/services/ci/create_builds_service.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/services/ci/create_builds_service.rb b/app/services/ci/create_builds_service.rb index 2dcb052d274..3b21f0acb96 100644 --- a/app/services/ci/create_builds_service.rb +++ b/app/services/ci/create_builds_service.rb @@ -36,7 +36,9 @@ module Ci :allow_failure, :stage, :stage_idx, - :environment) + :environment, + :when, + :yaml_variables) build_attrs.merge!(pipeline: @pipeline, ref: @pipeline.ref, |