Skip to content

Commit e91bf74

Browse files
authored
Merge pull request #1117 from wordpress-mobile/ci/fix-slack-notify-in-dependency-analysis-pipeline
[CI] Fix Slack Notify Configuration in Dependency Analysis Pipeline
2 parents fac6b23 + 3eb110c commit e91bf74

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.buildkite/schedules/dependency-analysis.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@ steps:
1313
plugins: [$CI_TOOLKIT]
1414
artifact_paths:
1515
- "build/reports/dependency-analysis/build-health-report.*"
16-
notify:
17-
- slack: "#android-core-notifs"
18-
if: build.state == "failed"
16+
17+
notify:
18+
- slack:
19+
channels:
20+
- "#android-core-notifs"
21+
message: "Dependency analysis succeeded."
22+
if: build.state == "passed"
23+
- slack:
24+
channels:
25+
- "#android-core-notifs"
26+
message: "Dependency analysis failed."
27+
if: build.state == "failed"

0 commit comments

Comments
 (0)