-
Notifications
You must be signed in to change notification settings - Fork 19
/
action.yaml
42 lines (38 loc) · 1.28 KB
/
action.yaml
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
32
33
34
35
36
37
38
39
40
41
42
name: Honeycomb Buildevents
author: Honeycomb
description: Trace GitHub Action workflows with Honeycomb
branding:
icon: activity
color: yellow
inputs:
apikey:
description: A Honeycomb API key - needed to send traces.
required: true
apihost:
description: Defaults to https://api.honeycomb.io
required: false
default: https://api.honeycomb.io
dataset:
description: The Honeycomb dataset to send traces to.
required: true
status:
description: Status of the job or worfklow. Setting this signals when to end the trace.
required: false
trace-start:
description: Unix timestamp to represent when the trace started. Not necessary for single job workflows. Send in final use of the action for multi-job workflows.
required: false
matrix-key:
description: Set this to a key unique for this matrix cell, only useful when using a build matrix.
required: false
job-status:
description: Deprecated value - please use status instead
deprecationMessage: job-status is now deprecated - please use status instead
send-init-event:
default: "true"
description: (true/false) Whether to send an event representing the setup of this action.
required: false
# outputs
runs:
using: node20
main: dist/index.js
post: dist/index.js