forked from Entle/action-pagerduty-alert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
26 lines (26 loc) · 862 Bytes
/
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
name: 'PagerDuty Alert'
description: 'GitHub Action to send a critical PagerDuty alert, e.g. on action failure.'
inputs:
pagerduty-integration-key:
description: 'The integration key for your PagerDuty service'
required: true
alert-dedup-key:
description: 'The key used to correlate PagerDuty triggers, acknowledges, and resolves for the same alert.'
required: false
alert-summary:
description: 'A custom summary for your PagerDuty alert'
required: false
alert-severity:
description: 'The severity level used when creating a PagerDuty alert'
required: false
default: critical
alert-event-action:
description: 'The type of alert event. Can be trigger, acknowledge or resolve'
required: false
default: trigger
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'alert-triangle'
color: 'red'