-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
55 lines (54 loc) · 1.51 KB
/
action.yml
File metadata and controls
55 lines (54 loc) · 1.51 KB
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
name: Gitflow release
description: Release following Gitflow branching model
author: Gerard Vico
inputs:
command:
description: Supported commands are [start|finish|start_finish]
required: true
tag:
description: A Git tag name.
required: true
git_user:
description: Git committer identify.
required: false
default: github-actions
git_email:
description: Git committer email.
required: false
default: github-actions@github.com
main_branch:
description: Branch storing the official release history
required: false
default: master
develop_branch:
description: Branch serving as an integration branch for features
required: false
default: develop
allow_empty_releases:
description: Allow integrate releases with 0 commits ahead your main branch
required: false
default: "false"
ignore_commits_from_author:
description: Author to ignore from the commits count
required: false
default: include_all_authors
ignore_commits_grep:
description: Commits to ignore based on given message content
required: false
default: include_all_messages
runs:
using: docker
image: Dockerfile
args:
- ${{ inputs.command }}
- ${{ inputs.tag }}
- ${{ inputs.git_user }}
- ${{ inputs.git_email }}
- ${{ inputs.main_branch }}
- ${{ inputs.develop_branch }}
- ${{ inputs.allow_empty_releases }}
- ${{ inputs.ignore_commits_from_author }}
- ${{ inputs.ignore_commits_grep }}
branding:
icon: 'award'
color: 'green'