matrix-notifier/.drone.yml
Bruno BELANYI 79caed6e68
Some checks failed
continuous-integration/drone/push Build is failing
WIP: test failure notification
2021-06-12 19:18:28 +02:00

29 lines
433 B
YAML

---
kind: pipeline
type: exec
name: Matrix Notifier check
steps:
- name: Pre-commit checks
commands:
- nix flake check
- "false"
- name: Notifiy
commands:
- nix run .
environment:
ADDRESS:
from_secret: matrix_homeserver
ROOM:
from_secret: matrix_roomid
USER:
from_secret: matrix_username
PASS:
from_secret: matrix_password
when:
status:
- failure
- success
...