-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
37 lines (35 loc) · 952 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
26
27
28
29
30
31
32
33
34
35
36
37
name: Upload Captain Artifact
description: Upload artifacts to Captain
author: RWX
branding:
icon: 'upload-cloud'
color: 'green'
inputs:
artifacts:
required: true
description: |
this is a json array of objects with fields...
- name: how the artifact will be shown in captain
- path: path to test result. This field supports bash globbing (e.g. **/*).
- kind: for now, this should always be "test_results"
- parser: one of
- cypress_junit_xml
- jest_json
- junit_xml
- rspec_json
- xunit_dot_net_xml
job-name:
required: false
description: >
This is required if you set the `name` property on your job.
If you provided a name, set that same value here.
job-matrix:
required: false
captain-token:
required: true
captain-base-url:
required: false
default: https://cloud.rwx.com
runs:
using: 'node20'
main: 'dist/index.js'