forked from ScaCap/action-surefire-report
-
Notifications
You must be signed in to change notification settings - Fork 6
/
action.yml
45 lines (44 loc) · 1.18 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
name: 'TestNG Report'
description: 'Report TestNG test results as annotations on Github Pull Request'
branding:
icon: 'check-square'
color: 'green'
inputs:
github_token:
description: 'GITHUB_TOKEN'
required: true
default: ${{ github.token }}
report_paths:
description: 'Testng xml report paths in glob format'
required: false
default: '**/testng-results.xml'
update_existing_check:
description: 'Update existing check with annotations'
required: false
default: false
remove_duplicates:
description: 'Remove duplicated test failures'
required: false
default: true
show_skipped:
description: 'Show count of skipped and ignored tests'
required: false
default: false
check_name:
description: 'Check name to report status to'
required: false
default: 'Test Report'
fail_if_empty:
description: 'Fail check if test reports are empty or not found'
required: false
default: true
commit:
description: 'commit sha to update the status'
required: false
skip_publishing:
description: 'skip test report publishing'
required: false
default: 'false'
runs:
using: 'node20'
main: 'dist/index.js'