2019-11-24 16:44:26 +09:00
|
|
|
name: 'Create or Update Comment'
|
|
|
|
description: 'Create or update an issue or pull request comment'
|
|
|
|
inputs:
|
|
|
|
token:
|
2019-11-24 23:14:30 +09:00
|
|
|
description: 'GITHUB_TOKEN or a repo scoped PAT.'
|
2020-04-04 17:59:22 +09:00
|
|
|
default: ${{ github.token }}
|
2019-11-24 16:44:26 +09:00
|
|
|
repository:
|
2019-11-24 17:25:35 +09:00
|
|
|
description: 'The full name of the repository in which to create or update a comment.'
|
2019-11-24 16:44:26 +09:00
|
|
|
issue-number:
|
2019-11-24 17:25:35 +09:00
|
|
|
description: 'The number of the issue or pull request in which to create a comment.'
|
2019-11-24 16:44:26 +09:00
|
|
|
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:
|
2020-04-17 16:31:17 +09:00
|
|
|
description: 'Deprecated in favour of `reactions`'
|
|
|
|
reactions:
|
|
|
|
description: 'A comma separated list of reactions to add to the comment.'
|
2020-04-09 16:03:30 +09:00
|
|
|
outputs:
|
|
|
|
comment-id:
|
|
|
|
description: 'The id of the created comment'
|
2019-11-24 16:44:26 +09:00
|
|
|
runs:
|
|
|
|
using: 'node12'
|
|
|
|
main: 'dist/index.js'
|
|
|
|
branding:
|
|
|
|
icon: 'message-square'
|
|
|
|
color: 'gray-dark'
|