mirror of
https://github.com/mshick/add-pr-comment.git
synced 2025-12-31 22:29:45 +11:00
16 lines
402 B
YAML
16 lines
402 B
YAML
name: "Add PR Comment"
|
|
description: "Add a comment to a PR"
|
|
inputs:
|
|
msg:
|
|
description: "the message to print"
|
|
required: true
|
|
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"
|