forked from grassedge/git-pr-release-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
31 lines (31 loc) · 944 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
29
30
31
name: 'Git pr release action'
description: 'Create a release pull-request.'
author: 'bouchedid'
inputs:
owner:
description: "Default is current reopsitory's owner."
repo:
description: "Default is current reopsitory's name."
base:
description: "Base branch of the release pull-request."
required: true
head:
description: "Head branch of the release pull-request. Typically, it is the same as a subscribed branch."
required: true
assign:
description: "If true, assign each pull-req's assignees to the release pull-req"
labels:
description: 'Labels that is added to the release pull-request'
template:
description: 'Path to the template you want to use.'
tz:
description: 'Used to generate the version string.'
token:
description: 'Used to create a pull request.'
required: true
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: 'check-square'
color: 'gray-dark'