-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
28 lines (28 loc) · 967 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
23
24
25
26
27
28
name: 'Update Issue Body'
description: 'Update an issue body'
inputs:
token:
description: 'GITHUB_TOKEN or a repo scoped PAT.'
default: ${{ github.token }}
repository:
description: 'The full name of the repository in which to create or update a comment.'
default: ${{ github.repository }}
issue-number:
description: 'The number of the issue to be updated.'
body:
description: 'The issue body.'
edit-mode:
description: 'The mode when updating the issue body, "replace", "append" or "prepend".'
default: 'append'
prepend-separator:
description: 'The separator to use when prepending to an existing issue body. (`newline`, `space`, `none`)'
default: 'newline'
append-separator:
description: 'The separator to use when appending to an existing issue body. (`newline`, `space`, `none`)'
default: 'newline'
runs:
using: 'node16'
main: 'dist/index.js'
branding:
icon: 'message-square'
color: 'gray-dark'