generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 16
/
action.yml
25 lines (25 loc) · 861 Bytes
/
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
name: 'trx-parser'
description: 'An action to parse trx reports from a given path and use GitHub status check api to fail PRs'
author: 'Nasir Amin'
branding:
icon: 'info'
color: 'green'
inputs:
TRX_PATH:
description: 'Path to the directory cntaining trx files'
required: true
REPO_TOKEN:
description: 'Pass in the repository token. This should be generally be secrets.GITHUB_TOKEN. This is used for GitHub checks api'
required: true
IGNORE_FAILURE:
description: 'Set to true if you want test failures not to block the pull requests. The check status will be set to neutral'
required: false
default: 'false'
outputs:
test-outcome:
description: 'Test outcome Failed/Passed'
trx-files:
description: 'list of trx files'
runs:
using: 'node12'
main: 'dist/index.js'