forked from everlytic/branch-merge
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
24 lines (24 loc) · 793 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
name: 'Branch Merge'
description: 'Merges a source branch, or SHA1 ref into a target branch'
inputs:
github_token:
description: 'Token used to authenticate with GitHub when performing the merge command.'
required: true
default: ${{ github.token }}
source_ref:
description: 'Branch name or Ref that you wish to merge into the target_branch.'
required: true
default: ${{ github.ref }}
target_branch:
description: 'Branch you are merging the source ref into.'
required: true
commit_message_template:
description: 'Template to generate the commit message, see README.md for more info'
required: false
default: 'Merged {source_ref} into {target_branch}.'
runs:
using: 'node16'
main: 'dist/index.js'
branding:
icon: git-merge
color: green