generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 21
/
action.yml
31 lines (31 loc) · 1013 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
27
28
29
30
31
name: 'Datadog Action'
description: 'Push Datadog metrics and events from GitHub Actions'
author: 'Massimiliano Pippi'
inputs:
api-key:
description: 'A valid Datadog API Key'
required: true
api-url:
description: 'The URL of the API endpoint, defaults to US datacenter'
default: 'https://api.datadoghq.com'
metrics:
description: 'A list of metrics objects to send, see docs for details'
default: '[]'
events:
description: 'A list of event objects to send, see docs for details'
default: '[]'
service-checks:
description: 'A list of service check objects to send, see docs for details'
default: '[]'
log-api-url:
description: 'The URL of the Log API endpoint, defaults to JSON or plain text format over HTTPS'
default: 'https://http-intake.logs.datadoghq.com'
logs:
description: 'A list of log objects to send, see docs for details'
default: '[]'
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'bar-chart-2'
color: 'purple'