mirror of
https://github.com/mshick/add-pr-comment.git
synced 2025-12-31 14:20:32 +11:00
initial commit
This commit is contained in:
commit
3d8df2a501
21 changed files with 6283 additions and 0 deletions
16
action.yml
Normal file
16
action.yml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue