Skip to content

Commit

Permalink
ci(PPDSC-2700): Add slack notify for every job where missing (#582)
Browse files Browse the repository at this point in the history
* ci(PPDSC-2700): add slack notify for every job

* ci(PPDSC-2700): removed slack notify from non main run jobs
  • Loading branch information
Vanals committed Jan 25, 2023
1 parent bc377de commit ba44bdb
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,9 @@ jobs:
root: ./
paths:
- vendor/apt/*
- slack/notify:
<<: *slack_notify


install_deps:
executor: node-large
Expand Down Expand Up @@ -583,6 +586,8 @@ jobs:
command: sudo pip install awscli
- aws_assume_role:
job_type: << parameters.job_type >>
- slack/notify:
<<: *slack_notify

deploy_terraform:
parameters:
Expand Down Expand Up @@ -627,6 +632,8 @@ jobs:
steps:
- terraform_apply:
package: << parameters.package >>
- slack/notify:
<<: *slack_notify

test_visual_comps_percy:
executor: node-large
Expand All @@ -653,6 +660,8 @@ jobs:
echo "Baseline updates required; continuing job."
}
- run_test_visual_comps_percy
- slack/notify:
<<: *slack_notify

docsite_tests_conditional_run_to_update_baselines:
# if there are any visual diffs we need to run the Percy docsite tests to update the baselines
Expand All @@ -674,6 +683,8 @@ jobs:
echo "Baseline updates required; continuing job."
}
- run_test_visual_docs_percy
- slack/notify:
<<: *slack_notify

skip_percy_comps_check:
executor: node
Expand Down Expand Up @@ -769,6 +780,8 @@ jobs:
- run:
name: Delete trigger-release@ tag
command: make delete_trigger_release_tag VERSION=<< parameters.version >>
- slack/notify:
<<: *slack_notify

publish_npm:
parameters:
Expand Down Expand Up @@ -1049,7 +1062,7 @@ jobs:
- slack/notify:
<<: *slack_notify

# ========== CODEMOD TASKS ==========
# ========== CODEMOD RELATED JOBS ==========

install_deps_codemod:
executor: node
Expand Down Expand Up @@ -1163,6 +1176,8 @@ jobs:
- run:
name: Delete trigger-release-codemod@ tag
command: cd lib/codemod && make delete_trigger_release_tag VERSION=<< parameters.version >>
- slack/notify:
<<: *slack_notify

merge_checker:
executor: node
Expand Down

0 comments on commit ba44bdb

Please sign in to comment.