generated from austenstone/action-typescript
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
56 lines (53 loc) · 1.39 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
53
54
55
56
name: Get Job Summary
author: Austen Stone
description: Get a GitHub Actions job summary and/or convert it to another format (PDF, markdown, or HTML)
branding:
icon: "save"
color: "blue"
inputs:
name:
description: The name of the markdown and PDF file
default: job-summary
required: false
create-pdf:
description: Whether to create a PDF file
default: true
required: false
create-pdf-artifact:
description: Whether to create an artifact with the PDF file
default: true
required: false
create-md:
description: Whether to create a markdown file
default: true
required: false
create-md-artifact:
description: Whether to create an artifact with the markdown file
default: false
required: false
create-html:
description: Whether to create an HTML file
default: true
required: false
create-html-artifact:
description: Whether to create an artifact with the HTML file
default: false
required: false
artifact-name:
description: The name of the artifact
default:
required: false
outputs:
job-summary:
description: The job summary
job-summary-html:
description: The job summary as HTML
pdf-file:
description: The path to the PDF file
md-file:
description: The path to the markdown file
html-file:
description: The path to the HTML file
runs:
using: "node20"
main: "dist/index.js"