-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaction.yml
31 lines (31 loc) · 920 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: 'Auto branch merger'
description: 'Automate merging the trigger branch into another one'
inputs:
github_token:
description: 'Github authentication token available in github.token context.'
required: true
source_ref:
description: 'Branch name or Ref that you wish to merge into the target_branch.'
required: false
default: ''
target_branch:
description: 'Branch you are merging into.'
required: true
commit_message:
description: 'The commit message'
required: false
default: ''
allow_fast_forward:
description: 'If enabled it will try to just update the reference first.'
required: false
default: true
force_fast_forward:
description: 'Force fast-forward. if allow_fast_forward is set to false, this has no effect.'
required: false
default: false
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: git-merge
color: orange