forked from frankie567/grafana-annotation-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
31 lines (28 loc) · 847 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: 'Add Grafana annotation'
author: 'François Voron'
description: 'Add a Grafana annotation to your dashboards during your deployment'
inputs:
apiHost:
description: 'Grafana API host'
required: true
apiToken:
description: 'Grafana API token'
required: true
text:
description: 'Text of the annotation'
required: true
dashboardId:
description: 'Id. of the dashboard to add the annotation on. If not provided, will be global to all dashboards.'
required: false
panelId:
description: 'Id. of the panel to add the annotation on. If not provided, will be global to all panels.'
required: false
tags:
description: 'Comma-separated list of tags assigned to the annotation.'
required: false
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: 'bar-chart-2'
color: 'orange'