version: 2.1 orbs: slack: circleci/slack@4.9.3 jobs: notify: docker: - image: cimg/base:current steps: - slack/notify: custom: | { "blocks": [ { "type": "section", "fields": [ { "type": "plain_text", "text": "*This is a text notification*", "emoji": true } ] } ] ...