matrix-notifier/.drone.yml
Bruno BELANYI 002f514dd5
Some checks reported errors
continuous-integration/drone/push Build was killed
WIP: more verbose
2021-06-12 14:59:05 +02:00

28 lines
581 B
YAML

---
kind: pipeline
type: exec
name: Matrix Notifier check
steps:
- name: Notifiy
commands:
- nix run -vvv .
environment:
ADDRESS:
from_secret: matrix_homeserver
ROOM:
from_secret: matrix_roomid
USER:
from_secret: matrix_username
PASS:
from_secret: matrix_password
MESSAGE:
# FIXME: need to find a way to link
"Build ${DRONE_BUILD_STATUS} [${DRONE_REPO_OWNER}/${DRONE_REPO_NAME}](${dummy_link}) (${DRONE_BRANCH}) by ${DRONE_COMMIT_AUTHOR}"
settings:
trigger:
status:
- failure
- success
...