2019-11-07 18:29:47 +00:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: gradle:5.6.3
|
|
|
|
commands:
|
|
|
|
- gradle build
|
|
|
|
|
|
|
|
- name: notify
|
|
|
|
image: appleboy/drone-telegram
|
|
|
|
settings:
|
|
|
|
token:
|
|
|
|
from_secret: telegram_token
|
|
|
|
to:
|
|
|
|
from_secret: telegram_user
|
|
|
|
format: markdown
|
|
|
|
message: |
|
|
|
|
Build {{build.number}} from commit [{{truncate commit.sha 10}}]({{commit.link}}) **failed**.
|
|
|
|
{{uppercasefirst commit.author}} please fix me!
|
2019-11-07 18:34:59 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- failure
|