From 350b8b921b8cb1cbb211e266f43b9053f2f5e846 Mon Sep 17 00:00:00 2001 From: sue445 Date: Tue, 18 Aug 2020 01:44:48 +0900 Subject: [PATCH] Migrate to Slack orb --- .circleci/config.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index ce8d06b3..634bc1e3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,6 +3,7 @@ version: 2.1 orbs: ruby-orbs: sue445/ruby-orbs@volatile heroku: circleci/heroku@0.0.2 + slack: circleci/slack@volatile executors: default: @@ -28,6 +29,7 @@ jobs: - run: cp .circleci/database.yml config/database.yml - run: bundle exec rake ar:migrate:reset - run: bundle exec rspec + - slack/status rubocop: executor: @@ -38,6 +40,7 @@ jobs: - ruby-orbs/bundle-install: cache_key_prefix: "v3-bundle" - run: bundle exec rubocop + - slack/status workflows: version: 2 @@ -54,3 +57,5 @@ workflows: filters: branches: only: master + post-deploy: + - slack/status