-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathaction.yml
35 lines (35 loc) · 891 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
32
33
34
35
name: 'Merge branch'
description: 'A GitHub Action that manage git merge for any gitflow'
author: Miguel Savignano
inputs:
type:
type: 'labeled | now'
required: false
default: 'labeled'
label_name:
description: 'PR Label name'
required: false
target_branch:
description: 'The name of target branch to merge'
required: true
from_branch:
description: 'Alias head_to_merge input'
required: false
head_to_merge:
description: 'The branch name or hash to merge. default GITHUB_SHA'
required: false
github_token:
description: 'Github token'
required: true
message:
description: 'Commit message'
required: false
disable_fastforwards:
description: 'Does not merge the branch if no files have been changed'
required: false
runs:
using: 'docker'
image: 'Dockerfile'
branding:
icon: 'git-merge'
color: 'purple'