Skip to content

Commit fec1bff

Browse files
authored
Merge pull request #76 from solidusio/waiting-for-dev/remove_slack_notifications
Remove Slack notifications for CI failures
2 parents ca9465e + 17ab136 commit fec1bff

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

.circleci/config.yml

-15
Original file line numberDiff line numberDiff line change
@@ -4,48 +4,33 @@ orbs:
44
# https://circleci.com/developer/orbs/orb/circleci/orb-tools
55
orb-tools: circleci/[email protected]
66
shellcheck: circleci/[email protected]
7-
slack: circleci/[email protected]
87

98
filters: &filters
109
tags:
1110
only: /.*/
1211

13-
with_notification: &with_notification
14-
context: slack-secrets
15-
post-steps:
16-
- slack/notify:
17-
event: fail
18-
template: basic_fail_1
19-
branch_pattern: master
20-
2112
workflows:
2213
lint-pack:
2314
jobs:
2415
- orb-tools/lint:
2516
filters: *filters
26-
<<: *with_notification
2717
- orb-tools/pack:
2818
filters: *filters
29-
<<: *with_notification
3019
- orb-tools/review:
3120
filters: *filters
3221
exclude: RC009 # 64 is too short as the commands line lenth limit
33-
<<: *with_notification
3422
- shellcheck/check:
3523
filters: *filters
36-
<<: *with_notification
3724
- orb-tools/publish:
3825
orb-name: solidusio/extensions
3926
vcs-type: << pipeline.project.type >>
4027
enable-pr-comment: false
4128
requires:
4229
[orb-tools/lint, orb-tools/review, orb-tools/pack, shellcheck/check]
4330
filters: *filters
44-
<<: *with_notification
4531
# Triggers the next workflow in the Orb Development Kit.
4632
- orb-tools/continue:
4733
pipeline-number: << pipeline.number >>
4834
vcs-type: << pipeline.project.type >>
4935
requires: [orb-tools/publish]
5036
filters: *filters
51-
<<: *with_notification

0 commit comments

Comments
 (0)