跳到主要内容

Pushover with YAML

List of YAML parameters and examples for the "Pushover" action

YAML parameters for Pushover

名称类型描述
action
必填
StringThe ID of the action.
type
必填
StringThe type of the action. Should be set to PUSHOVER.
integration_hash
必填
StringThe ID of the integration.
content
必填
StringThe content of the notification.
deviceStringThe name of the device to whick notification will be sent.
priorityStringSpecifies the priority of the notification. Can be one of LOW, NORMAL or HIGH.
linkStringThe link of the notification.
link_titleStringThe title of the notification link.
titleStringThe title of the notification.

YAML example for Pushover

actions:
- action: "Send notification to Phone"
type: "PUSHOVER"
title: "Buddy"
content: "${BUDDY_PIPELINE_NAME} execution #${BUDDY_EXECUTION_ID}"
link: "${BUDDY_EXECUTION_URL}"
link_title: "Show execution details"
device: "Phone"
priority: "HIGH"
integration_hash: "5ddb7c180fb38be67bd78a88a"