-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
38 lines (38 loc) · 964 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
38
name: 'RelativeCI agent'
description: 'Send webpack stats and CI build information to RelativeCI'
branding:
icon: 'box'
color: 'blue'
inputs:
token:
description: GitHub token
required: true
key:
description: 'RelativeCI project key'
required: true
webpackStatsFile:
description: 'Path to your local bundle stats file'
required: false
slug:
description: 'RelativeCI project slug'
required: false
endpoint:
description: 'RelativeCI ingest endpoint'
required: false
includeCommitMessage:
description: 'Include commit message'
required: false
default: 'true'
debug:
description: 'Output debug info'
required: false,
default: 'false'
artifactName:
description: 'Artifact to download when running in workflow_run'
required: false
artifactWebpackStatsFile:
description: 'Artifact bundle stats file path'
required: false
runs:
using: 'node16'
main: 'dist/index.js'