-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.drone.yml
52 lines (47 loc) · 1.06 KB
/
.drone.yml
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
52
kind: pipeline
name: keran-api
steps:
- name: build
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
repo: keeppack/keran-api
tags:
- ${DRONE_SOURCE_BRANCH}
---
kind: pipeline
name: notification
steps:
- name: slack
image: plugins/slack
settings:
webhook:
from_secret: slack_webhook
channel: dev-ops
username: drone
link_names: true
template: >
{{#success build.status}}
Build {{build.number}} succeeded! :)
Event: {{build.event}}
Branch: {{build.branch}}
Tag: {{build.tag}}
Git SHA: {{build.commit}}
Link: {{build.link}}
{{else}}
Build {{build.number}} failed! :(
Event: {{build.event}}
Branch: {{build.branch}}
Tag: {{build.tag}}
Git SHA: {{build.commit}}
Link: {{build.link}}
{{/success}}
depends_on:
- keran-api
trigger:
status:
- success
- failure