forked from lgmorand/github-action-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
17 lines (17 loc) · 808 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: 'Hello World by LGM' # name of the action (mandatory)
description: 'Says hello to someone' # simple description (mandatory)
author: 'Louis-Guillaume MORAND' # author (optional)
runs:
using: 'node16' # Action de type JavaScript utilisant NodeJS 16
main: 'index.js' # le point d'entrée (script principal) est un fichier index.js
inputs: # liste des paramètres d'entrées
firstname: # (mandatory) name of parameter
description: 'firstname of the person' # (mandatory)
required: true # (mandatory) tells if parameter is mandatory or not
firstname2: # (mandatory) name of parameter
description: 'firstname of the person' # (mandatory)
required: true # (mandatory) tells if parameter is mandatory or not
default: "Jane"
branding:
icon: 'message-circle'
color: 'orange'