forked from Entle/action-pagerduty-alert
-
Notifications
You must be signed in to change notification settings - Fork 6
/
action.yml
24 lines (24 loc) · 798 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
name: 'PagerDuty Alert Remastered'
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
pagerduty-dedup-key:
description: 'The key used to correlate PagerDuty triggers, acknowledges, and resolves for the same alert.'
required: false
incident-summary:
description: 'A custom summary for your PagerDuty alert'
required: false
incident-region:
description: 'The region where the incident occurred'
required: false
incident-environment:
description: 'The environment where the incident occurred'
required: false
runs:
using: 'node16'
main: 'index.js'
branding:
icon: 'alert-triangle'
color: 'red'