-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
36 lines (36 loc) · 1.25 KB
/
Copy pathaction.yml
File metadata and controls
36 lines (36 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: 'PR Commenter'
branding:
icon: 'message-circle'
color: 'blue'
description: 'Comments a pull request with the provided message'
inputs:
message:
description: 'Message that should be printed in the pull request'
file-path:
description: 'Path of the file that should be commented'
github-token:
description: 'Github token of the repository (automatically created by Github)'
default: ${{ github.token }}
required: false
reactions:
description: 'You can set some reactions on your comments through the `reactions` input.'
pr-number:
description: 'Manual pull request number'
comment-tag:
description: 'A tag on your comment that will be used to identify a comment in case of replacement.'
mode:
description: 'Mode that will be used (upsert/recreate/delete/delete-on-completion)'
default: 'upsert'
create-if-not-exists:
description: 'Whether a comment should be created even if comment-tag is not found.'
default: 'true'
owner:
description: 'Repository owner if different than one action is running in'
required: false
repo:
description: 'Repository name if different than one action is running in'
required: false
runs:
using: 'node24'
main: 'lib/index.js'
post: 'lib/cleanup/index.js'