-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
35 lines (35 loc) · 1.14 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: 'pushover action'
description: 'Action for sending pushover notifications via pushover.net'
author: 'Usman Mahmood'
branding:
icon: 'heart'
color: 'blue'
inputs:
status:
description: 'The current status of the job'
message:
description: 'Message text'
title:
description: 'Message title'
url:
description: 'Supplementary URL to show with your message'
url_title:
description: 'title for your supplementary URL, otherwise just the URL is shown'
device:
description: 'Device name to send the message directly to, rather than all devices (multiple devices may be separated by a comma)'
priority:
description: 'Notification priority (low-to-high: -2 to 1)'
sound:
description: 'The name of a supported sound (https://pushover.net/api#sounds; custom sounds are supported)'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- --status=${{ inputs.status }}
- --message=${{ inputs.message }}
- --title=${{ inputs.title }}
- --url=${{ inputs.url }}
- --url_title=${{ inputs.url_title }}
- --device=${{ inputs.device }}
- --priority=${{ inputs.priority }}
- --sound=${{ inputs.sound }}