forked from ashley-taylor/junit-report-annotations-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
28 lines (28 loc) · 764 Bytes
/
action.yml
File metadata and controls
28 lines (28 loc) · 764 Bytes
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
name: "Junit Report to Annotations"
description: "Create an annotation of the test run summaryand also list first n failed tests as seporate annotations"
branding:
icon: "box"
color: "green"
inputs:
access-token:
description: "github token"
required: true
path:
description: "glob to junit xml files"
required: true
default: "**/TEST-*.xml"
includeSummary:
description: "include summary annotation"
required: true
default: true
numFailures:
description: "max number of failed tests to include"
require: true
default: 10
name:
description: "Name of the Check in the github actions UI"
require: true
default: "Junit Results"
runs:
using: "node12"
main: "index.js"