mirror of
https://github.com/actions/hello-world-javascript-action.git
synced 2025-04-03 21:49:36 +00:00
Format action.yml
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,5 +1,5 @@
|
||||
# Dependency directory
|
||||
node_modules
|
||||
node_modules/
|
||||
|
||||
# Rest pulled from https://github.com/github/gitignore/blob/master/Node.gitignore
|
||||
# Logs
|
||||
|
24
action.yml
24
action.yml
@ -1,13 +1,19 @@
|
||||
name: 'Hello World'
|
||||
description: 'Greet someone and record the time'
|
||||
name: Hello, World!
|
||||
description: Greet someone and record the time
|
||||
author: GitHub Actions
|
||||
|
||||
# Define your inputs here.
|
||||
inputs:
|
||||
who-to-greet: # id of input
|
||||
description: 'Who to greet'
|
||||
who-to-greet:
|
||||
description: Who to greet
|
||||
required: true
|
||||
default: 'World'
|
||||
default: World
|
||||
|
||||
# Define your outputs here.
|
||||
outputs:
|
||||
time: # id of output
|
||||
description: 'The time we greeted you'
|
||||
time:
|
||||
description: The time we greeted you
|
||||
|
||||
runs:
|
||||
using: 'node16'
|
||||
main: 'index.js'
|
||||
using: node20
|
||||
main: dist/index.js
|
||||
|
Reference in New Issue
Block a user