Skip to content

Commit efecaf6

Browse files
committed
Merge branch '4.1'
2 parents b61c64b + 3adfe9f commit efecaf6

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

ssh.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Laravel includes a helpful command for tailing the `laravel.log` files on any of
100100
- [Multiple Servers](#envoy-multiple-servers)
101101
- [Parallel Execution](#envoy-parallel-execution)
102102
- [Task Macros](#envoy-task-macros)
103-
- [HipChat Notifications](#envoy-hipchat-notifications)
103+
- [Notifications](#envoy-notifications)
104104
- [Updating Envoy](#envoy-updating-envoy)
105105

106106
Laravel Envoy provides a clean, minimal syntax for defining common tasks you run on your remote servers. Using a [Blade](/docs/templates#blade-templating) style syntax, you can easily setup tasks for deployment, Artisan commands, and more.
@@ -195,8 +195,11 @@ The `deploy` macro can now be run via a single, simple command:
195195

196196
envoy run deploy
197197

198+
<a name="envoy-notifications"></a>
198199
<a name="envoy-hipchat-notifications"></a>
199-
### HipChat Notifications
200+
### Notifications
201+
202+
#### HipChat
200203

201204
After running a task, you may send a notification to your team's HipChat room using the simple `@hipchat` directive:
202205

@@ -212,6 +215,14 @@ After running a task, you may send a notification to your team's HipChat room us
212215

213216
This is an amazingly simple way to keep your team notified of the tasks being run on the server.
214217

218+
#### Slack
219+
220+
The following syntax may be used to send a notification to [Slack](https://slack.com):
221+
222+
@after
223+
@slack('team', 'token', 'channel')
224+
@endafter
225+
215226
<a name="envoy-updating-envoy"></a>
216227
### Updating Envoy
217228

0 commit comments

Comments
 (0)