-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
28 lines (28 loc) · 797 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
name: 'GitHub Actions metrics to Datadog'
description: 'Send metrics of GitHub Actions to Datadog'
author: 'Yuya Takeyama'
branding:
icon: 'bar-chart'
color: 'purple'
inputs:
github-token:
required: false
description: 'GitHub API token'
datadog-api-key:
required: true
description: 'Datadog API key'
enable-workflow-metrics:
required: false
description: 'Set "true" to send workflow metrics'
default: 'false'
enable-billing-metrics:
required: false
description: 'Set "true" to send User/Organization billing metrics'
default: 'false'
enable-repository-workflows-billing-metrics:
required: false
description: 'Set "true" to send Repository Workflows billing metrics'
default: 'false'
runs:
using: 'node16'
main: 'dist/index.js'