Drone plugins > Ntfy
The Ntfy.sh plugin posts build status messages to your selected Ntfy server.
Example
kind: pipeline
name: default
steps:
- name: send ntfy notification
image: parrazam/drone-ntfy
when:
status: [success, failure]
settings:
url: https://ntfy.example.org
topic: events
priority: low
tags:
- pipeline-status
- dev
token:
from_secret: ntfy_token
Properties
url
stringoptionalNtfy server. If empty, default one will be https://ntfy.sh
Default: none
topic
stringrequiredTopic to publish message
Default: none
priority
stringoptionalPriority of the notification. Values can be [min, low, default, high, max]
Default: default
tags
stringoptionalCustom tags of the notification.
Default: none
username
stringoptionalUsername with publish permissions
Default: none
password
stringoptionalPassword for username
Secret recommendedDefault: none
token
stringoptionalToken to publish/subscribe, instead to use username/password
Secret recommendedDefault: none