create-or-update-comment/action.yml
2019-11-24 17:25:35 +09:00

25 lines
764 B
YAML

name: 'Create or Update Comment'
description: 'Create or update an issue or pull request comment'
inputs:
token:
description: 'A GitHub access token.'
required: true
repository:
description: 'The full name of the repository in which to create or update a comment.'
issue-number:
description: 'The number of the issue or pull request in which to create a comment.'
comment-id:
description: 'The id of the comment to update.'
body:
description: 'The comment body.'
edit-mode:
description: 'The mode when updating a comment, "replace" or "append".'
reaction-type:
description: 'The reaction to add to the comment.'
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: 'message-square'
color: 'gray-dark'