forked from krzko/setup-telemetry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yaml
42 lines (36 loc) · 1.17 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: Setup telemetry
description: >
This action exports trace IDs, job names, creation, and start times for use in other steps or jobs
within the GitHub Actions workflow.
author: Kristof Kowalski
inputs:
github-token:
required: true
default: ${{ github.token }}
description: A token that can be used with the GitHub API.
observability-backend-url:
required: false
description: Base URL to the observability backend, to create a trace link.
outputs:
created-at:
description: The creation time of the GitHub Actions job in RFC 3339 format.
job-id:
description: The ID of the GitHub Actions job.
job-name:
description: The name of the GitHub Actions job.
job-span-id:
description: The Span ID generated for the job.
started-at:
description: The start time of the GitHub Actions job in RFC 3339 format.
traceparent:
description: The W3C Trace Context traceparent value for the job.
trace-id:
description: The Trace ID generated for the job.
trace-link:
description: The URL to the observability backend, to create a trace link.
runs:
using: node20
main: index.js
branding:
icon: person-running
color: gray-dark