diff --git a/src/Platformsh2Slack.php b/src/Platformsh2Slack.php index 707e49a..8228f9b 100644 --- a/src/Platformsh2Slack.php +++ b/src/Platformsh2Slack.php @@ -260,6 +260,10 @@ function processPlatformshPayload() { $this->slack_text = "$name created the snapshot `{$platformsh->payload->backup_name}` from `$branch` of $project_string"; break; + case 'environment.backup.delete': + $this->slack_text = "$name deleted the snapshot `{$platformsh->payload->backup_name}` from `$branch` of $project_string"; + break; + case 'environment.deactivate': $this->slack_text = "$name deactivated the environment `$branch` of $project_string"; break;