mirror of https://github.com/cutefishos/calamares
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
340 B
YAML
20 lines
340 B
YAML
name: 'Notify on Push'
|
|
description: 'Notify Matrix room'
|
|
|
|
inputs:
|
|
room:
|
|
description: 'Matrix Room ID'
|
|
required: true
|
|
token:
|
|
description: 'Matrix Token'
|
|
required: true
|
|
message:
|
|
description: 'Message to send'
|
|
required: true
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- shell: bash
|
|
run: echo "$INPUT_MESSAGE"
|