Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(PPDSC-2700): Add slack notify for every job where missing #582

Merged
merged 3 commits into from
Jan 25, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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