forked from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
47 lines (43 loc) · 1.11 KB
/
action.yml
File metadata and controls
47 lines (43 loc) · 1.11 KB
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: Report Annotate
description: Annotate PR from report e.g. junit
author: Grano Digital
branding:
icon: flag
color: yellow
inputs:
reports:
description: |-
Reports to annotate: "format|glob1, glob2, ..."
For example: "junit-eslint|junit/lint.xml"
default: |
junit|junit/*.xml
ignore:
description: |-
Ignore files from report search: "[glob1, glob2...]"
default: |
node_modules/**
dist/**
max-annotations:
description: |-
Maximum number of annotations per type (error/warning/notice)
default: '10'
custom-matchers:
description: |-
Custom matchers to use for parsing reports in JSON format.
Example: { "matcher-name": ReportMatcher }
See ./src/matchers for examples
token:
description: GitHub token for creating PR comments
default: ${{ github.token }}
outputs:
errors:
description: Errors found in reports
warnings:
description: Warnings found in reports
notices:
description: Notices found in reports
total:
description: Total annotations created
runs:
using: node24
main: dist/index.js