-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
32 lines (25 loc) · 844 Bytes
/
action.yml
File metadata and controls
32 lines (25 loc) · 844 Bytes
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
name: Create or Update PR Comment
description: Create and update a PR comment, rather than creating a new one with every run.
inputs:
github-token:
required: true
description: The GitHub token for interacting with the repository.
comment-identifier:
required: true
description: An unchanging identifier for the comment that should be updated
comment-content:
required: true
description: A string of Github-flavored markdown for your comment
pr-ref:
required: false
description: A git ref which points to a commit contained in the target PR
pr-number:
required: false
description: The number for the target PR
create-if-not-exists:
required: false
description: If comment does not already exist, create it
default: 'true'
runs:
using: 'node20'
main: 'dist/index.js'