matrix-notifier/.drone.yml
Bruno BELANYI 0049ca514c
Some checks failed
continuous-integration/drone/push Build is failing
WIP: test failure notification
2021-06-12 19:15:50 +02:00

30 lines
456 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
settings:
trigger:
status:
- failure
- success
...