forked from catchpoint/foresight-workflow-kit-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
31 lines (30 loc) · 930 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: "Foresight Workflow Kit"
description: "Foresight Workflow Kit"
author: "Serkan Özal <[email protected]>"
inputs:
github_token:
description: "GitHub API Access Token"
default: ${{ github.token }}
required: false
api_key:
description: "Foresight API KEY"
required: true
min_proc_duration:
description: "Minimum duration value in milliseconds to trace processes. Must be a number. Defaults to '-1' (no min value)."
default: -1
required: false
trace_sys_procs:
description: "Enables tracing default system processes ('aws', 'cat', 'sed', ...). Defaults to 'false'."
default: "false"
required: false
stat_frequency:
description: "Statistic collection frequency in seconds. Must be a number. Defaults to '5'."
default: 5
required: false
runs:
using: "node16"
main: dist/main/index.js
post: dist/post/index.js
branding:
icon: "activity"
color: "yellow"