-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
64 lines (53 loc) · 1.44 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
name: Git Flow
description: A GitHub Action that enforces and assists with GitFlow.
inputs:
main-branch-name:
description: 'The name of the main branch'
required: false
default: 'main'
develop-branch-name:
description: The name of the develop branch.
required: false
default: develop
feature-prefix:
description: 'Prefix for feature branches'
required: false
default: 'feature/'
bugfix-prefix:
description: 'Prefix for bugfix branches'
required: false
default: 'bugfix/'
release-prefix:
description: 'Prefix for release branches'
required: false
default: 'release/'
hotfix-prefix:
description: 'Prefix for hotfix branches'
required: false
default: 'hotfix/'
support-prefix:
description: 'Prefix for support branches'
required: false
default: 'support/'
version-tag-prefix:
description: Prefix to be applied to tags when they are created.
required: false
default: ""
release-candidate:
description: The name of the next release.
required: false
default: ""
runs:
using: 'docker'
image: Dockerfile
args:
- ${{ inputs.main-branch-name }}
- ${{ inputs.develop-branch-name }}
- ${{ inputs.feature-prefix }}
- ${{ inputs.bugfix-prefix }}
- ${{ inputs.release-prefix }}
- ${{ inputs.hotfix-prefix }}
- ${{ inputs.support-prefix }}
- ${{ inputs.version-tag-prefix }}
- ${{ inputs.release-candidate }}