-
Notifications
You must be signed in to change notification settings - Fork 40
/
action.yml
52 lines (51 loc) · 1.96 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: "Workflow Telemetry"
description: "Workflow Telemetry"
author: "Serkan Özal <[email protected]>"
inputs:
github_token:
description: "GitHub API Access Token"
default: ${{ github.token }}
required: false
metric_frequency:
description: "Metric collection frequency in seconds. Must be a number. Defaults to '5'."
default: "5"
required: false
proc_trace_min_duration:
description: "Puts minimum limit for process execution duration to be traced. Must be a number. Defaults to '-1' which means process duration filtering is not applied."
default: "-1"
required: false
proc_trace_sys_enable:
description: "Enables tracing default system processes ('aws', 'cat', 'sed', ...). Defaults to 'false'."
default: "false"
required: false
proc_trace_chart_show:
description: "Enables showing traced processes in trace chart. Defaults to 'true'."
default: "true"
required: false
proc_trace_chart_max_count:
description: "Maximum number of processes to be shown in trace chart (applicable if `proc_trace_chart_show` input is `true`). Must be a number. Defaults to '100'."
default: "100"
required: false
proc_trace_table_show:
description: "Enables showing traced processes in trace table. Defaults to 'false'."
default: "false"
required: false
comment_on_pr:
description: "Set to `true` to publish the results as comment to the PR (applicable if workflow run is triggered from PR). Defaults to 'true'."
default: "true"
required: false
job_summary:
description: "Set to `true` to publish the results as part of the job summary page of the workflow run. Defaults to 'true'."
default: "true"
required: false
theme:
description: "Set to `dark` to generate charts compatible with Github dark mode. Defaults to 'light'."
default: "light"
required: false
runs:
using: "node20"
main: dist/main/index.js
post: dist/post/index.js
branding:
icon: "activity"
color: "yellow"