mirror of
https://github.com/actions/typescript-action.git
synced 2025-12-15 06:26:52 +00:00
The javascript action does this: https://github.com/actions/javascript-action/blob/main/action.yml
15 lines
397 B
YAML
15 lines
397 B
YAML
name: 'james'
|
|
description: 'Provide a description here'
|
|
author: 'Your name or organization here'
|
|
inputs:
|
|
milliseconds: # change this
|
|
required: true
|
|
description: 'input description here'
|
|
default: 'default value if applicable'
|
|
outputs:
|
|
time: # output will be available to future steps
|
|
description: 'The current time after waiting'
|
|
runs:
|
|
using: 'node16'
|
|
main: 'dist/index.js'
|