-
Notifications
You must be signed in to change notification settings - Fork 4
/
M1 Cal workflows.yml
3100 lines (3028 loc) · 142 KB
/
M1 Cal workflows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This code is licensed from CircleCI to the user under the MIT license.
# See here for details: https://circleci.com/developer/orbs/licensing
version: 2.1
description: |
Implement event-based notifications across all of your CI/CD pipelines. Utilizing built-in message templates or Slack's visual Block-Kit builder, create and customize notifications specific to your organization's needs. Supports Linux x86_64, MacOS, and Arm64 V8.
display:
home_url: https://github.com/CircleCI-Public/slack-orb/wiki
source_url: https://github.com/CircleCI-Public/slack-orb
commands:
notify:
description: Notify a Slack channel with a custom message.
parameters:
branch_pattern:
default: .+
description: |
A comma separated list of regex matchable branch names. Notifications will only be sent if sent from a job from these branches. By default ".+" will be used to match all branches. Pattern must match the full string, no partial matches.
type: string
channel:
default: $SLACK_DEFAULT_CHANNEL
description: |
Select which channel in which to post to. Channel name or ID will work. You may include a comma separated list of channels if you wish to post to multiple channels at once. Set the "SLACK_DEFAULT_CHANNEL" environment variable for the default channel.
type: string
custom:
default: ""
description: |
Enter a custom message template.
1. Create your message template using the Block Kit Builder: https://app.slack.com/block-kit-builder/.
2. Insert any desired environment variables.
3. Paste value here.
type: string
event:
default: always
description: |
In what event should this message send? Options: ["fail", "pass", "always"]
enum:
- fail
- pass
- always
type: enum
ignore_errors:
default: true
description: |
Ignore errors posting to Slack.
Disable to catch initial setup errors. Re-enable to prevent Slack errors from affecting your pipeline.
type: boolean
mentions:
default: ""
description: |
Exports to the "$SLACK_PARAM_MENTIONS" environment variable for use in templates.
Mention users via the @ symbol: "@USER"
If the username contains a space, the Slack ID must be used with angled brackets: "<@U8XXXXXXX>"
type: string
tag_pattern:
default: .+
description: |
A comma separated list of regex matchable tag names. Notifications will only be sent if sent from a job from these branches. By default ".+" will be used to match all tags. Pattern must match the full string, no partial matches.
type: string
template:
default: ""
description: 'Use one of the built-in templates. Select the template name. Preview each template on the gitHub Readme: '
type: string
steps:
- run:
command: |
echo 'export CCI_STATUS="fail"' > /tmp/SLACK_JOB_STATUS
name: Slack - Detecting Job Status (FAIL)
when: on_fail
- run:
command: |
echo 'export CCI_STATUS="pass"' > /tmp/SLACK_JOB_STATUS
name: Slack - Detecting Job Status (PASS)
when: on_success
- run:
command: |
BuildMessageBody() {
# Send message
# If sending message, default to custom template,
# if none is supplied, check for a pre-selected template value.
# If none, error.
if [ -n "${SLACK_PARAM_CUSTOM:-}" ]; then
ModifyCustomTemplate
# shellcheck disable=SC2016
CUSTOM_BODY_MODIFIED=$(echo "$CUSTOM_BODY_MODIFIED" | sed 's/\\/\\\\/g' | sed 's/"/\\"/g' | sed 's/`/\\`/g')
T2=$(eval echo \""$CUSTOM_BODY_MODIFIED"\")
elif [ -n "${SLACK_PARAM_TEMPLATE:-}" ]; then
TEMPLATE="\$$SLACK_PARAM_TEMPLATE"
T1=$(eval echo "$TEMPLATE" | sed 's/"/\\"/g')
T2=$(eval echo \""$T1"\")
else
echo "Error: No message template selected."
echo "Select either a custom template or one of the pre-included ones via the 'custom' or 'template' parameters."
exit 1
fi
# Insert the default channel. THIS IS TEMPORARY
T2=$(echo "$T2" | jq ". + {\"channel\": \"$SLACK_DEFAULT_CHANNEL\"}")
SLACK_MSG_BODY=$T2
}
PostToSlack() {
# Post once per channel listed by the channel parameter
# The channel must be modified in SLACK_MSG_BODY
# shellcheck disable=SC2001
for i in $(eval echo \""$SLACK_PARAM_CHANNEL"\" | sed "s/,/ /g")
do
echo "Sending to Slack Channel: $i"
SLACK_MSG_BODY=$(echo "$SLACK_MSG_BODY" | jq --arg channel "$i" '.channel = $channel')
SLACK_SENT_RESPONSE=$(curl -s -f -X POST -H 'Content-type: application/json' -H "Authorization: Bearer $SLACK_ACCESS_TOKEN" --data "$SLACK_MSG_BODY" https://slack.com/api/chat.postMessage)
SLACK_ERROR_MSG=$(echo "$SLACK_SENT_RESPONSE" | jq '.error')
if [ ! "$SLACK_ERROR_MSG" = "null" ]; then
echo "Slack API returned an error message:"
echo "$SLACK_ERROR_MSG"
echo
echo
echo "View the Setup Guide: https://github.com/CircleCI-Public/slack-orb/wiki/Setup"
if [ "$SLACK_PARAM_IGNORE_ERRORS" = "0" ]; then
exit 1
fi
fi
done
}
ModifyCustomTemplate() {
# Inserts the required "text" field to the custom json template from block kit builder.
if [ "$(echo "$SLACK_PARAM_CUSTOM" | jq '.text')" = "null" ]; then
CUSTOM_BODY_MODIFIED=$(echo "$SLACK_PARAM_CUSTOM" | jq '. + {"text": ""}')
else
# In case the text field was set manually.
CUSTOM_BODY_MODIFIED=$(echo "$SLACK_PARAM_CUSTOM" | jq '.')
fi
}
InstallJq() {
if uname -a | grep Darwin > /dev/null 2>&1; then
echo "Checking For JQ + CURL: MacOS"
command -v jq >/dev/null 2>&1 || HOMEBREW_NO_AUTO_UPDATE=1 brew install jq --quiet
return $?
elif cat /etc/issue | grep Debian > /dev/null 2>&1 || cat /etc/issue | grep Ubuntu > /dev/null 2>&1; then
echo "Checking For JQ + CURL: Debian"
if [ "$(id -u)" = 0 ]; then export SUDO=""; else # Check if we're root
export SUDO="sudo";
fi
command -v jq >/dev/null 2>&1 || { $SUDO apt -qq update && $SUDO apt -qq install -y jq; }
return $?
elif cat /etc/issue | grep Alpine > /dev/null 2>&1; then
echo "Checking For JQ + CURL: Alpine"
command -v curl >/dev/null 2>&1 || { echo >&2 "SLACK ORB ERROR: CURL is required. Please install."; exit 1; }
command -v jq >/dev/null 2>&1 || { echo >&2 "SLACK ORB ERROR: JQ is required. Please install"; exit 1; }
return $?
fi
}
FilterBy() {
if [ -z "$1" ] || [ -z "$2" ]; then
return
fi
# If any pattern supplied matches the current branch or the current tag, proceed; otherwise, exit with message.
FLAG_MATCHES_FILTER="false"
for i in $(echo "$1" | sed "s/,/ /g")
do
if echo "$2" | grep -Eq "^${i}$"; then
FLAG_MATCHES_FILTER="true"
break
fi
done
if [ "$FLAG_MATCHES_FILTER" = "false" ]; then
# dont send message.
echo "NO SLACK ALERT"
echo
echo "Current reference \"$2\" does not match any matching parameter"
echo "Current matching pattern: $1"
exit 0
fi
}
CheckEnvVars() {
if [ -n "${SLACK_WEBHOOK:-}" ]; then
echo "It appears you have a Slack Webhook token present in this job."
echo "Please note, Webhooks are no longer used for the Slack Orb (v4 +)."
echo "Follow the setup guide available in the wiki: https://github.com/CircleCI-Public/slack-orb/wiki/Setup"
fi
if [ -z "${SLACK_ACCESS_TOKEN:-}" ]; then
echo "In order to use the Slack Orb (v4 +), an OAuth token must be present via the SLACK_ACCESS_TOKEN environment variable."
echo "Follow the setup guide available in the wiki: https://github.com/CircleCI-Public/slack-orb/wiki/Setup"
exit 1
fi
# If no channel is provided, quit with error
if [ -z "${SLACK_PARAM_CHANNEL:-}" ]; then
echo "No channel was provided. Enter value for SLACK_DEFAULT_CHANNEL env var, or channel parameter"
exit 1
fi
}
ShouldPost() {
if [ "$CCI_STATUS" = "$SLACK_PARAM_EVENT" ] || [ "$SLACK_PARAM_EVENT" = "always" ]; then
# In the event the Slack notification would be sent, first ensure it is allowed to trigger
# on this branch or this tag.
FilterBy "$SLACK_PARAM_BRANCHPATTERN" "${CIRCLE_BRANCH:-}"
FilterBy "$SLACK_PARAM_TAGPATTERN" "${CIRCLE_TAG:-}"
echo "Posting Status"
else
# dont send message.
echo "NO SLACK ALERT"
echo
echo "This command is set to send an alert on: $SLACK_PARAM_EVENT"
echo "Current status: ${CCI_STATUS}"
exit 0
fi
}
# Will not run if sourced from another script.
# This is done so this script may be tested.
ORB_TEST_ENV="bats-core"
if [ "${0#*$ORB_TEST_ENV}" = "$0" ]; then
CheckEnvVars
. "/tmp/SLACK_JOB_STATUS"
ShouldPost
InstallJq
BuildMessageBody
PostToSlack
fi
environment:
SLACK_PARAM_BRANCHPATTERN: <<parameters.branch_pattern>>
SLACK_PARAM_CHANNEL: <<parameters.channel>>
SLACK_PARAM_CUSTOM: <<parameters.custom>>
SLACK_PARAM_EVENT: <<parameters.event>>
SLACK_PARAM_IGNORE_ERRORS: <<parameters.ignore_errors>>
SLACK_PARAM_MENTIONS: <<parameters.mentions>>
SLACK_PARAM_TAGPATTERN: <<parameters.tag_pattern>>
SLACK_PARAM_TEMPLATE: <<parameters.template>>
basic_fail_1: |
{
"text": "CircleCI job failed.",
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": "Job Failed. :red_circle:",
"emoji": true
}
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Job*: ${CIRCLE_JOB}"
}
]
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Project*:\\n$CIRCLE_PROJECT_REPONAME"
},
{
"type": "mrkdwn",
"text": "*Branch*:\\n$CIRCLE_BRANCH"
},
{
"type": "mrkdwn",
"text": "*Author*:\\n$CIRCLE_USERNAME"
}
],
"accessory": {
"type": "image",
"image_url": "https://assets.brandfolder.com/otz5mn-bw4j2w-6jzqo8/original/circle-logo-badge-black.png",
"alt_text": "CircleCI logo"
}
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Mentions*:\\n$SLACK_PARAM_MENTIONS"
}
]
},
{
"type": "actions",
"elements": [
{
"type": "button",
"text": {
"type": "plain_text",
"text": "View Job"
},
"url": "${CIRCLE_BUILD_URL}"
}
]
}
]
}
basic_on_hold_1: |
{
"text": "CircleCI job on hold, waiting for approval.",
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": "ON HOLD - Awaiting Approval :raised_hand:",
"emoji": true
}
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Project*:\\n$CIRCLE_PROJECT_REPONAME"
},
{
"type": "mrkdwn",
"text": "*Branch*:\\n$CIRCLE_BRANCH"
},
{
"type": "mrkdwn",
"text": "*Author*:\\n$CIRCLE_USERNAME"
}
],
"accessory": {
"type": "image",
"image_url": "https://assets.brandfolder.com/otz5mn-bw4j2w-6jzqo8/original/circle-logo-badge-black.png",
"alt_text": "CircleCI logo"
}
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Mentions*:\\n$SLACK_PARAM_MENTIONS"
}
]
},
{
"type": "actions",
"elements": [
{
"type": "button",
"text": {
"type": "plain_text",
"text": "View Workflow"
},
"url": "https://circleci.com/workflow-run/${CIRCLE_WORKFLOW_ID}"
}
]
}
]
}
basic_success_1: |
{
"text": "CircleCI job succeeded!",
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": "Job Succeeded. :white_check_mark:",
"emoji": true
}
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Job*: ${CIRCLE_JOB}"
}
]
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Project*:\n $CIRCLE_PROJECT_REPONAME"
},
{
"type": "mrkdwn",
"text": "*Branch*:\n $CIRCLE_BRANCH"
},
{
"type": "mrkdwn",
"text": "*Commit*:\n $CIRCLE_SHA1"
},
{
"type": "mrkdwn",
"text": "*Author*:\n $CIRCLE_USERNAME"
}
],
"accessory": {
"type": "image",
"image_url": "https://assets.brandfolder.com/otz5mn-bw4j2w-6jzqo8/original/circle-logo-badge-black.png",
"alt_text": "CircleCI logo"
}
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Mentions*:\\n$SLACK_PARAM_MENTIONS"
}
]
},
{
"type": "actions",
"elements": [
{
"type": "button",
"text": {
"type": "plain_text",
"text": "View Job"
},
"url": "${CIRCLE_BUILD_URL}"
}
]
}
]
}
success_tagged_deploy_1: |
{
"text": "CircleCI job succeeded!",
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": "Deployment Successful! :tada:",
"emoji": true
}
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Project*:\\n$CIRCLE_PROJECT_REPONAME"
},
{
"type": "mrkdwn",
"text": "*When*:\\n$(date +'%m/%d/%Y %T')"
},
{
"type": "mrkdwn",
"text": "*Tag*:\\n$CIRCLE_TAG"
}
],
"accessory": {
"type": "image",
"image_url": "https://assets.brandfolder.com/otz5mn-bw4j2w-6jzqo8/original/circle-logo-badge-black.png",
"alt_text": "CircleCI logo"
}
},
{
"type": "actions",
"elements": [
{
"type": "button",
"text": {
"type": "plain_text",
"text": "View Job"
},
"url": "${CIRCLE_BUILD_URL}"
}
]
}
]
}
name: Slack - Sending Notification
when: always
jobs:
on-hold:
description: |
Insert this job in-line with your standard CircleCI on-hold notification jobs to simulataniously send a Slack notification containing a link to the paused Workflow.
docker:
- image: cimg/base:stable
parameters:
branch_pattern:
default: .+
description: |
A comma separated list of regex matchable branch names. Notifications will only be sent if sent from a job from these branches. By default ".+" will be used to match all branches. Pattern must match the full string, no partial matches.
type: string
channel:
default: $SLACK_DEFAULT_CHANNEL
description: |
Select which channel in which to post to. Channel name or ID will work. You may include a comma separated list of channels if you wish to post to multiple channels at once. Set the "SLACK_DEFAULT_CHANNEL" environment variable for the default channel.
type: string
custom:
default: ""
description: |
(optional) Enter a custom message template.
1. Create your message template using the Block Kit Builder: https://app.slack.com/block-kit-builder/.
2. Insert any desired environment variables.
3. Paste value here.
type: string
mentions:
default: ""
description: |
Exports to the "$SLACK_PARAM_MENTIONS" environment variable for use in templates.
Mention users via the @ symbol: "@USER"
If the username contains a space, the Slack ID must be used with angled brackets: "<@U8XXXXXXX>"
type: string
template:
default: basic_on_hold_1
description: (optional) By default this job will send the standard "basic_on_hold_1" template. In order to use a custom template you must also set this value to an empty string.
type: string
resource_class: small
steps:
- notify:
branch_pattern: <<parameters.branch_pattern>>
channel: <<parameters.channel>>
custom: <<parameters.custom>>
event: always
mentions: <<parameters.mentions>>
template: <<parameters.template>>
examples:
custom_notification:
description: |
Send a custom notification using Slack's Block Kit Builder.
Create the payload code and paste it in your notify command's custom parameter.
Detailed instructions in the GitHub readme.
https://app.slack.com/block-kit-builder
usage:
version: "2.1"
orbs:
slack: circleci/[email protected]
jobs:
notify:
docker:
- image: cimg/base:stable
steps:
- slack/notify:
custom: |
{
"blocks": [
{
"type": "section",
"fields": [
{
"type": "plain_text",
"text": "*This is a text notification*",
"emoji": true
}
]
}
]
}
event: always
workflows:
send-notification:
jobs:
- notify:
context: slack-secrets
full_deployment_sample:
description: |
A full test and deploy sample configuration.
Test your app on every commit. On tagged commits, place the workflow on-hold after testing, pending manual approval for deployment.
Receive a Slack notification when the workflow is placed on hold, and a notification whether the deployment fails or deploys successfully.
usage:
version: "2.1"
orbs:
slack: circleci/[email protected]
jobs:
deploy:
docker:
- image: cimg/base:stable
steps:
- run: echo "deploy my app"
- slack/notify:
event: fail
mentions: '@EngineeringTeam'
template: basic_fail_1
- slack/notify:
event: pass
template: success_tagged_deploy_1
test:
docker:
- image: cimg/base:stable
steps:
- run: echo "test my app"
workflows:
test-and-deploy:
jobs:
- test
- slack/on-hold:
context: slack-secrets
filters:
tags:
only: /^v.*/
requires:
- test
- pause_workflow:
filters:
tags:
only: /^v.*/
requires:
- test
- slack/on-hold
type: approval
- deploy:
filters:
tags:
only: /^v.*/
requires:
- pause_workflow
notify_on_fail_with_template:
description: |
Send a slack notification when a job fails. This example uses a pre-included template. Custom templates can also be used.
The channel parameter can be used to alert a specific Slack channel.
Ensure the "slack/notify" command is the last command in a job to accurately capture the status.
usage:
version: "2.1"
orbs:
node: circleci/node:4.1
slack: circleci/[email protected]
jobs:
deploy:
executor:
name: node/default
steps:
- checkout
- node/install-packages
- run:
command: npm run deploy
- slack/notify:
channel: ABCXYZ
event: fail
template: basic_fail_1
workflows:
deploy_and_notify:
jobs:
- deploy:
context: slack-secrets
notify_two_channels:
description: |
Send a Slack notification to two channels simultaneously.
By default, if no channel parameter is set, the $SLACK_DEFAULT_CHANNEL value will be used (must be set).
A custom channel, or comma-separated list of channels can be supplied via the "channel" parameter.
It is recommended to use the "channel ID" for the value(s).
View the wiki: https://github.com/CircleCI-Public/slack-orb/wiki/How-to-set-Slack-channel
usage:
version: "2.1"
orbs:
node: circleci/node:4.1
slack: circleci/[email protected]
jobs:
deploy:
executor:
name: node/default
steps:
- slack/notify:
channel: ABCXYZ, ZXCVBN
custom: |
{
"blocks": [
{
"type": "section",
"fields": [
{
"type": "plain_text",
"text": "*This is a text notification*",
"emoji": true
}
]
}
]
}
event: always
workflows:
deploy_and_notify:
jobs:
- deploy:
context: slack-secrets
on_hold_notification:
description: |
Pause a Workflow for manual approval and send a Slack notification with a link to the Workflow.
usage:
version: "2.1"
orbs:
slack: circleci/[email protected]
workflows:
on-hold-example:
jobs:
- my_test_job
- slack/on-hold:
context: slack-secrets
requires:
- my_test_job
- pause_workflow:
requires:
- my_test_job
- slack/on-hold
type: approval
- my_deploy_job:
requires:
- pause_workflow
only_notify_on_branch:
description: |
Use the "branch_pattern" parameter to limit notifications to specified branches. Useful when a job is executed on multiple branches but you only wish to be notified on a subset of branches. For example: If your "build" job runs on every branch, but you wish to only be notified when a failure occurs on the "staging" branch, your config may look like this.
usage:
version: "2.1"
orbs:
slack: circleci/[email protected]
jobs:
build:
machine: true
steps:
- run: some build command
- slack/notify:
branch_pattern: main
event: fail
template: basic_fail_1
- slack/notify:
branch_pattern: production
event: fail
mentions: <@U8XXXXXXX>, @UserName
template: basic_fail_1
workflows:
deploy_and_notify:
jobs:
- build:
context: slack-secrets
- deploy:
filters:
branches:
only:
- production
requires:
- build
successful_tagged_deployment:
description: |
Use one of our pre-included templates for sending a success notification when a tagged deployment passes.
Enter a Channel ID in the channel parameter to specify which slack channel to ping.
Ensure the "slack/notify" command is the last command in a job to accurately capture the status.
usage:
version: "2.1"
orbs:
node: circleci/node:4.1
slack: circleci/[email protected]
jobs:
deploy:
executor:
name: node/default
steps:
- checkout
- node/install-packages
- run:
command: npm run deploy
- slack/notify:
channel: ABCXYZ
event: pass
template: basic_fail_1
workflows:
deploy_and_notify:
jobs:
- deploy:
context:
- slack-secrets
# This code is licensed from CircleCI to the user under the MIT license.
# See here for details: https://circleci.com/developer/orbs/licensing
version: 2.1
description: |
Implement event-based notifications across all of your CI/CD pipelines. Utilizing built-in message templates or Slack's visual Block-Kit builder, create and customize notifications specific to your organization's needs. Supports Linux x86_64, MacOS, and Arm64 V8.
display:
home_url: https://github.com/CircleCI-Public/slack-orb/wiki
source_url: https://github.com/CircleCI-Public/slack-orb
commands:
notify:
description: Notify a Slack channel with a custom message.
parameters:
branch_pattern:
default: .+
description: |
A comma separated list of regex matchable branch names. Notifications will only be sent if sent from a job from these branches. By default ".+" will be used to match all branches. Pattern must match the full string, no partial matches.
type: string
channel:
default: $SLACK_DEFAULT_CHANNEL
description: |
Select which channel in which to post to. Channel name or ID will work. You may include a comma separated list of channels if you wish to post to multiple channels at once. Set the "SLACK_DEFAULT_CHANNEL" environment variable for the default channel.
type: string
custom:
default: ""
description: |
Enter a custom message template.
1. Create your message template using the Block Kit Builder: https://app.slack.com/block-kit-builder/.
2. Insert any desired environment variables.
3. Paste value here.
type: string
event:
default: always
description: |
In what event should this message send? Options: ["fail", "pass", "always"]
enum:
- fail
- pass
- always
type: enum
ignore_errors:
default: true
description: |
Ignore errors posting to Slack.
Disable to catch initial setup errors. Re-enable to prevent Slack errors from affecting your pipeline.
type: boolean
mentions:
default: ""
description: |
Exports to the "$SLACK_PARAM_MENTIONS" environment variable for use in templates.
Mention users via the @ symbol: "@USER"
If the username contains a space, the Slack ID must be used with angled brackets: "<@U8XXXXXXX>"
type: string
tag_pattern:
default: .+
description: |
A comma separated list of regex matchable tag names. Notifications will only be sent if sent from a job from these branches. By default ".+" will be used to match all tags. Pattern must match the full string, no partial matches.
type: string
template:
default: ""
description: 'Use one of the built-in templates. Select the template name. Preview each template on the gitHub Readme: '
type: string
steps:
- run:
command: |
echo 'export CCI_STATUS="fail"' > /tmp/SLACK_JOB_STATUS
name: Slack - Detecting Job Status (FAIL)
when: on_fail
- run:
command: |
echo 'export CCI_STATUS="pass"' > /tmp/SLACK_JOB_STATUS
name: Slack - Detecting Job Status (PASS)
when: on_success
- run:
command: |
BuildMessageBody() {
# Send message
# If sending message, default to custom template,
# if none is supplied, check for a pre-selected template value.
# If none, error.
if [ -n "${SLACK_PARAM_CUSTOM:-}" ]; then
ModifyCustomTemplate
# shellcheck disable=SC2016
CUSTOM_BODY_MODIFIED=$(echo "$CUSTOM_BODY_MODIFIED" | sed 's/\\/\\\\/g' | sed 's/"/\\"/g' | sed 's/`/\\`/g')
T2=$(eval echo \""$CUSTOM_BODY_MODIFIED"\")
elif [ -n "${SLACK_PARAM_TEMPLATE:-}" ]; then
TEMPLATE="\$$SLACK_PARAM_TEMPLATE"
T1=$(eval echo "$TEMPLATE" | sed 's/"/\\"/g')
T2=$(eval echo \""$T1"\")
else
echo "Error: No message template selected."
echo "Select either a custom template or one of the pre-included ones via the 'custom' or 'template' parameters."
exit 1
fi
# Insert the default channel. THIS IS TEMPORARY
T2=$(echo "$T2" | jq ". + {\"channel\": \"$SLACK_DEFAULT_CHANNEL\"}")
SLACK_MSG_BODY=$T2
}
PostToSlack() {
# Post once per channel listed by the channel parameter
# The channel must be modified in SLACK_MSG_BODY
# shellcheck disable=SC2001
for i in $(eval echo \""$SLACK_PARAM_CHANNEL"\" | sed "s/,/ /g")
do
echo "Sending to Slack Channel: $i"
SLACK_MSG_BODY=$(echo "$SLACK_MSG_BODY" | jq --arg channel "$i" '.channel = $channel')
SLACK_SENT_RESPONSE=$(curl -s -f -X POST -H 'Content-type: application/json' -H "Authorization: Bearer $SLACK_ACCESS_TOKEN" --data "$SLACK_MSG_BODY" https://slack.com/api/chat.postMessage)
SLACK_ERROR_MSG=$(echo "$SLACK_SENT_RESPONSE" | jq '.error')
if [ ! "$SLACK_ERROR_MSG" = "null" ]; then
echo "Slack API returned an error message:"
echo "$SLACK_ERROR_MSG"
echo
echo
echo "View the Setup Guide: https://github.com/CircleCI-Public/slack-orb/wiki/Setup"
if [ "$SLACK_PARAM_IGNORE_ERRORS" = "0" ]; then
exit 1
fi
fi
done
}
ModifyCustomTemplate() {
# Inserts the required "text" field to the custom json template from block kit builder.
if [ "$(echo "$SLACK_PARAM_CUSTOM" | jq '.text')" = "null" ]; then
CUSTOM_BODY_MODIFIED=$(echo "$SLACK_PARAM_CUSTOM" | jq '. + {"text": ""}')
else
# In case the text field was set manually.
CUSTOM_BODY_MODIFIED=$(echo "$SLACK_PARAM_CUSTOM" | jq '.')
fi
}
InstallJq() {
if uname -a | grep Darwin > /dev/null 2>&1; then
echo "Checking For JQ + CURL: MacOS"
command -v jq >/dev/null 2>&1 || HOMEBREW_NO_AUTO_UPDATE=1 brew install jq --quiet
return $?
elif cat /etc/issue | grep Debian > /dev/null 2>&1 || cat /etc/issue | grep Ubuntu > /dev/null 2>&1; then
echo "Checking For JQ + CURL: Debian"
if [ "$(id -u)" = 0 ]; then export SUDO=""; else # Check if we're root
export SUDO="sudo";
fi
command -v jq >/dev/null 2>&1 || { $SUDO apt -qq update && $SUDO apt -qq install -y jq; }
return $?
elif cat /etc/issue | grep Alpine > /dev/null 2>&1; then
echo "Checking For JQ + CURL: Alpine"
command -v curl >/dev/null 2>&1 || { echo >&2 "SLACK ORB ERROR: CURL is required. Please install."; exit 1; }
command -v jq >/dev/null 2>&1 || { echo >&2 "SLACK ORB ERROR: JQ is required. Please install"; exit 1; }
return $?
fi
}
FilterBy() {
if [ -z "$1" ] || [ -z "$2" ]; then
return
fi
# If any pattern supplied matches the current branch or the current tag, proceed; otherwise, exit with message.
FLAG_MATCHES_FILTER="false"
for i in $(echo "$1" | sed "s/,/ /g")
do
if echo "$2" | grep -Eq "^${i}$"; then
FLAG_MATCHES_FILTER="true"
break
fi
done
if [ "$FLAG_MATCHES_FILTER" = "false" ]; then
# dont send message.
echo "NO SLACK ALERT"
echo
echo "Current reference \"$2\" does not match any matching parameter"
echo "Current matching pattern: $1"
exit 0
fi
}
CheckEnvVars() {
if [ -n "${SLACK_WEBHOOK:-}" ]; then
echo "It appears you have a Slack Webhook token present in this job."
echo "Please note, Webhooks are no longer used for the Slack Orb (v4 +)."
echo "Follow the setup guide available in the wiki: https://github.com/CircleCI-Public/slack-orb/wiki/Setup"
fi
if [ -z "${SLACK_ACCESS_TOKEN:-}" ]; then
echo "In order to use the Slack Orb (v4 +), an OAuth token must be present via the SLACK_ACCESS_TOKEN environment variable."
echo "Follow the setup guide available in the wiki: https://github.com/CircleCI-Public/slack-orb/wiki/Setup"
exit 1
fi
# If no channel is provided, quit with error
if [ -z "${SLACK_PARAM_CHANNEL:-}" ]; then
echo "No channel was provided. Enter value for SLACK_DEFAULT_CHANNEL env var, or channel parameter"
exit 1
fi
}
ShouldPost() {
if [ "$CCI_STATUS" = "$SLACK_PARAM_EVENT" ] || [ "$SLACK_PARAM_EVENT" = "always" ]; then
# In the event the Slack notification would be sent, first ensure it is allowed to trigger
# on this branch or this tag.
FilterBy "$SLACK_PARAM_BRANCHPATTERN" "${CIRCLE_BRANCH:-}"
FilterBy "$SLACK_PARAM_TAGPATTERN" "${CIRCLE_TAG:-}"
echo "Posting Status"
else
# dont send message.
echo "NO SLACK ALERT"
echo
echo "This command is set to send an alert on: $SLACK_PARAM_EVENT"
echo "Current status: ${CCI_STATUS}"
exit 0
fi
}
# Will not run if sourced from another script.
# This is done so this script may be tested.
ORB_TEST_ENV="bats-core"
if [ "${0#*$ORB_TEST_ENV}" = "$0" ]; then
CheckEnvVars
. "/tmp/SLACK_JOB_STATUS"
ShouldPost
InstallJq
BuildMessageBody