Bruno BELANYI
bad1c90d39
All checks were successful
continuous-integration/drone/push Build is passing
This is my first experiment to make sure I can actually use this in my CI.
28 lines
421 B
YAML
28 lines
421 B
YAML
---
|
|
kind: pipeline
|
|
type: exec
|
|
name: Matrix Notifier check
|
|
|
|
steps:
|
|
- name: Pre-commit checks
|
|
commands:
|
|
- nix flake check
|
|
|
|
- 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
|
|
...
|