blob: eb3ee09d329bd5824e45c378da4cd08a9eb393b8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
---
title: Build triggers reference
---
At the end of a job or a job group, you can execute triggers based on the
outcome of the job.
The basic format of a trigger is (in JSON):
```
{
"action": "trigger type",
"condition": "when to execute this trigger",
[...action-specific configuration...]
}
```
Or in YAML:
```
triggers:
- action: trigger type
condition: when to execute this trigger
...action-specific configuration...
```
Condition may be one of the following:
- **always**: execute the trigger after every build
- **failure**: execute the trigger after a failed build
- **success**: execute the trigger after a successful build
The following actions are available:
## email
Sends an email summarizing the build results.
*Configuration*
- **to**: The value of the "To" header in the outgoing email, e.g. your email
address or e.g. `Jim Jimson <jim@example.org>, Bob Bobson <bob@example.org>`
## webhook
Submits the job status (as it would be returned by GET /api/jobs/:id) as a POST
request to a specified URL.
*Configuration*
- **url**: The URL to submit the HTTP request to
|