forked from tzkhan/pr-update-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
46 lines (46 loc) · 1.15 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: "GitHub Pull Request Updater Action"
description: "GitHub Action that updates a pull request"
author: "Arthur Vasconcelos"
branding:
icon: "git-pull-request"
color: "green"
runs:
using: "node16"
main: "dist/index.js"
inputs:
token:
description: "The GITHUB_TOKEN secret"
required: true
title:
description: "Title replacement for the PR"
required: false
default: ""
title-prefix:
description: "Text to be prepended to the PR title"
required: false
default: ""
title-suffix:
description: "Text to be appended to the PR title"
required: false
default: ""
body:
description: "Body replacement for the PR"
required: false
default: ""
body-prefix:
description: "Text to be prepended to the PR body"
required: false
default: ""
body-suffix:
description: "Text to be appended to the PR body"
required: false
default: ""
body-concat-new-line:
description: "Flag to indicate whether to add a new line between the body prefix and suffix"
required: false
default: "true"
outputs:
new-title:
description: "New PR title"
new-body:
description: "New PR body"