Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- pipeline:
- publish:
- image: plugins/docker
- repo: USER/PROJECT
- tags: dev
- secrets: [ docker_username , docker_password ]
- when:
- branch: [ develop ]
- event: [ push ]
- notfiy:
- image: plugins/slack
- webhook: WEBHOOK_URL
- channel: notifications
- username: drone
- template: >
- {{#success build.status}}
- repo {{repo.name}}
- branch {{build.branch}}
- commit {{build.commit}}
- link {{build.link}}
- author {{build.author}}
- build {{build.number}} succeeded. Good job.
- {{else}}
- repo {{repo.name}}
- branch {{build.branch}}
- commit {{build.commit}}
- link {{build.link}}
- author {{build.author}}
- build {{build.number}} failed. Fix me please.
- {{/success}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement