25 lines
478 B
YAML
25 lines
478 B
YAML
name: Apprise Notify
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
title:
|
|
required: true
|
|
type: string
|
|
message:
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
notify:
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- name: Send notification
|
|
uses: cstuder/apprise-ga@master
|
|
with:
|
|
title: ${{ inputs.title }}
|
|
message: ${{ inputs.message }}
|
|
env:
|
|
APPRISE_URL: generic://apprise.local.chromart.cc/notify/chromart
|