forked from noir-lang/noir-gates-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
47 lines (44 loc) · 1.34 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
name: Generate report
author: guipublic
description: Easily compare json reports
branding:
icon: info
color: purple
inputs:
token:
description: The repository's github token.
default: ${{ github.token }}
required: false
base:
description: The report reference branch name.
default: ${{ github.base_ref || github.ref_name }}
required: false
head:
description: The report target branch name.
default: ${{ github.head_ref || github.ref_name }}
required: false
report:
description: Report freshly generated to compare to reference.
default: gates_report.json
required: false
header:
description: The top section displayed in the markdown output.
default: |
# Peak Memory Sample
required: false
memory_report:
description: States whether we want to generate a report of memory usage.
default: false
required: false
execution_report:
description: States whether we want to generate a report of execution times.
default: false
required: false
outputs:
shell:
description: The diff between the base report and the freshly generated report, specifically formatted for shell display
markdown:
description: The diff between the base report and the freshly generated report, specifically formatted for markdown display
runs:
using: node16
main: dist/index.js