-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathaction.yml
22 lines (22 loc) · 815 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: 'Rewritable Pull Request / Issue Comment'
branding:
icon: 'message-circle'
color: 'red'
description: 'Posts a PR / issue comment that re-writes itself on an update'
inputs:
GITHUB_TOKEN:
description: 'Github token of the repository (automatically created by Github)'
required: true
COMMENT_IDENTIFIER:
description: 'A unique identifier for the re-writable comment (can be the purpose of the comment)'
ISSUE_ID:
description: 'The identifier for a PR / issue that the comment should be made on. Defaults to the PR that the workflow is running on'
message:
description: 'Message that should be printed in the pull request'
required: true
runs:
using: 'node12'
main: 'dist/index.js'
outputs:
comment-id:
description: 'The ID of the newly created / updated comment'