This repository has been archived by the owner on Mar 9, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
56 lines (56 loc) · 2.13 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: 'android lint statistics'
description: 'android lint statistics action, aggregate warning counts, generate chart'
author: 'MeilCli'
branding:
icon: activity
color: orange
inputs:
repository:
description: 'running repository, format: owner/repository'
required: true
default: ${{ github.repository }}
github_token:
description: 'github token, using to push data branch'
required: true
default: ${{ github.token }}
lint_xml_file_path:
description: 'android lint reported xml file paths, enable glob pattern'
required: true
lint_xml_file_path_follow_symbolic_links:
description: 'android lint reported xml file paths glob pattern`s follow symbolic links option'
required: true
default: 'false'
data_branch:
description: 'the saving data branch, this branch is created by this action. if want disable this feature, put empty string'
default: 'data/lint'
data_commit_user:
description: 'the saving data commit user'
default: 'github-action'
data_commit_email:
description: 'the saving data commit user`s email'
default: '41898282+github-actions[bot]@users.noreply.github.com'
data_json_file_path:
description: 'the saving data json file path, this file is created at data branch'
default: 'data.json'
data_chart_file_path:
description: 'the data transition chart png image path, this file is created at your checkouted branch'
default: 'data.png'
severity_chart_file_path:
description: 'the severity chart png image path, this file is created at your checkouted branch'
required: true
default: 'severity.png'
priority_chart_file_path:
description: 'the priority chart png image path, this file is created at your checkouted branch'
required: true
default: 'priority.png'
report_json_file_path:
description: 'the report json file path, this file is created at your checkouted branch'
required: true
default: 'report.json'
report_text_file_path:
description: 'the report text file path, this file is created at your checkouted branch'
required: true
default: 'report.txt'
runs:
using: 'node16'
main: 'dist/index.js'