-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yaml
31 lines (26 loc) · 899 Bytes
/
action.yaml
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: Feature Branching
author: Jonathan Delgado <[email protected]> (https://jon.soy)
branding:
icon: git-branch
color: orange
description: Automate merge all branching tagged
inputs:
label_name_to_merge:
description: Label used to select branch. Ex. `future-branch`
required: true
base_brach:
description: Branch name used to make the branch. Ex. `master`
required: true
destination_brach:
description: name of branch to merge branches tagged. Per default add the prefix `pre-` at the name base branch. Ex. `pre-master`
required: false
merge_strategy:
description: The merge strategy to apply when merge the other branches. Read more about it https://git-scm.com/docs/merge-strategies
required: false
outputs:
created:
description: |
`true` if the feature branch was created, `false` otherwise.
runs:
using: "node16"
main: "src/action.js"