diff options
author | James Lopez <james@jameslopez.es> | 2016-02-05 11:04:13 +0100 |
---|---|---|
committer | James Lopez <james@jameslopez.es> | 2016-02-05 11:04:13 +0100 |
commit | 0309e0818a9d73af0157ce36b2306d5723e7fb97 (patch) | |
tree | fc00e4de4f0c29dded0ec481e803d5cfbd81c2ae /.gitlab-ci.yml | |
parent | 70f82cc5ac08c2129f3a10dd1155f43eaecd2e03 (diff) | |
download | gitlab-ce-0309e0818a9d73af0157ce36b2306d5723e7fb97.tar.gz |
removed slack task and added bash script instead. Updated gitlab-ci config file
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 997994485da..290fa120812 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -183,8 +183,11 @@ spinach:ruby21: notify:slack: stage: notifications script: - - bundle exec rake ci:slack:error["#ci-test","Build failed for master/tags"] + - source ./scripts/notify_slack.sh "#ci-test" "Build failed for master/tags!" when: on_failure - only: - - master - - tags
\ No newline at end of file + # TODO: uncomment these lines. + #only: + # - master@gitlab-org/gitlab-ce + # - tags@gitlab-org/gitlab-ce + # - master@gitlab-org/gitlab-ee + # - tags@gitlab-org/gitlab-ee
\ No newline at end of file |