-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
40 lines (36 loc) · 995 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
39
40
name: 'Assert'
description:
'Assert your Github action variables to make sure they are correct.'
author: 'Payadel'
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
color: 'green'
# Define your inputs here.
inputs:
inputs:
description: 'Inputs with yaml structure'
required: true
fail-fast:
default: 'false'
required: false
description: 'Fail with the first error or not?'
verbose:
default: 'false'
required: false
description:
'If it is false, only errors will be displayed, otherwise all messages
will be displayed.'
# Define your outputs here.
outputs:
success:
description: 'Are all asserts true or not? (boolean)'
messagesStr:
description:
'Messages include errors and success messages with string type.'
messages:
description:
'Messages with object format include type of message (success or error)
and message'
runs:
using: node20
main: dist/index.js