matrix-notifier/.drone.yml

30 lines
456 B
YAML
Raw Normal View History

---
kind: pipeline
type: exec
name: Matrix Notifier check
steps:
- name: Pre-commit checks
commands:
- nix flake check
2021-06-12 19:15:50 +02:00
- "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
...