mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-11-29 02:45:23 +01:00
13 lines
348 B
YAML
13 lines
348 B
YAML
|
name: 'Webhook'
|
||
|
description: 'Wait a designated number of milliseconds'
|
||
|
inputs:
|
||
|
milliseconds: # id of input
|
||
|
description: 'number of milliseconds to wait'
|
||
|
required: true
|
||
|
default: '1000'
|
||
|
outputs:
|
||
|
time: # output will be available to future steps
|
||
|
description: 'The message to output'
|
||
|
runs:
|
||
|
using: 'node12'
|
||
|
main: 'dist/index.js'
|