diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-10-06 14:16:03 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-10-06 14:16:03 +0200 |
commit | 0e1f39d8cee3a6d23fccb195f8257178df840805 (patch) | |
tree | 6e84589c4c567e69680718b911b075c53d188687 /db/fixtures | |
parent | c319cc5ab5064459aaf803ee719a08e9663726ea (diff) | |
download | gitlab-ce-0e1f39d8cee3a6d23fccb195f8257178df840805.tar.gz |
Allow to close environments
Diffstat (limited to 'db/fixtures')
-rw-r--r-- | db/fixtures/development/14_pipelines.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/db/fixtures/development/14_pipelines.rb b/db/fixtures/development/14_pipelines.rb index 803cbca584d..d3fabe111a1 100644 --- a/db/fixtures/development/14_pipelines.rb +++ b/db/fixtures/development/14_pipelines.rb @@ -17,6 +17,7 @@ class Gitlab::Seeder::Pipelines { name: 'env:beta', stage: 'deploy', environment: 'beta', status: :running }, { name: 'env:gamma', stage: 'deploy', environment: 'gamma', status: :canceled }, { name: 'staging', stage: 'deploy', environment: 'staging', status_event: :success }, + { name: 'close staging', stage: 'deploy', environment: 'staging', when: 'manual', status: :skipped, options: { environment: { close: true } } }, { name: 'production', stage: 'deploy', environment: 'production', when: 'manual', status: :skipped }, { name: 'slack', stage: 'notify', when: 'manual', status: :created }, ] |