2021-06-13 18:38:06 +02:00
|
|
|
---
|
2021-02-08 18:39:46 +01:00
|
|
|
kind: pipeline
|
2021-06-13 18:38:06 +02:00
|
|
|
type: exec
|
|
|
|
name: NixOS config check
|
2021-02-08 18:39:46 +01:00
|
|
|
|
|
|
|
steps:
|
2021-09-25 17:04:42 +02:00
|
|
|
- name: nix flake check
|
2021-06-13 18:38:06 +02:00
|
|
|
commands:
|
2021-09-25 17:04:42 +02:00
|
|
|
- nix flake check
|
2021-02-08 18:39:46 +01:00
|
|
|
|
2021-06-13 18:38:06 +02:00
|
|
|
- name: notifiy
|
|
|
|
commands:
|
|
|
|
- nix run .#matrix-notifier
|
|
|
|
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
|
|
|
|
...
|