-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/issue-50' into develop
- Loading branch information
Showing
8 changed files
with
349 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/sh | ||
# | ||
# Runs during git flow release create finish | ||
# | ||
# Positional arguments: | ||
# $1 Version | ||
# | ||
# Return VERSION - When VERSION is returned empty, git-flow will stop as the | ||
# version is necessary | ||
# | ||
# The following variables are available as they are exported by git-flow: | ||
# | ||
# MASTER_BRANCH - The branch defined as Master | ||
# DEVELOP_BRANCH - The branch defined as Develop | ||
# | ||
VERSION=$1 | ||
|
||
# Implement your script here. | ||
|
||
# Return the VERSION | ||
echo ${VERSION} | ||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/sh | ||
# | ||
# Runs during git flow release create start | ||
# | ||
# Positional arguments: | ||
# $1 Version | ||
# | ||
# Return VERSION - When VERSION is returned empty, git-flow will stop as the | ||
# version is necessary | ||
# | ||
# The following variables are available as they are exported by git-flow: | ||
# | ||
# MASTER_BRANCH - The branch defined as Master | ||
# DEVELOP_BRANCH - The branch defined as Develop | ||
# | ||
VERSION=$1 | ||
|
||
# Implement your script here. | ||
|
||
# Return the VERSION | ||
echo ${VERSION} | ||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/sh | ||
# | ||
# Runs during git flow release finish | ||
# | ||
# Positional arguments: | ||
# $1 Version | ||
# | ||
# Return VERSION - When VERSION is returned empty, git-flow will stop as the | ||
# version is necessary | ||
# | ||
# The following variables are available as they are exported by git-flow: | ||
# | ||
# MASTER_BRANCH - The branch defined as Master | ||
# DEVELOP_BRANCH - The branch defined as Develop | ||
# | ||
VERSION=$1 | ||
|
||
# Implement your script here. | ||
|
||
# Return the VERSION | ||
echo ${VERSION} | ||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/sh | ||
# | ||
# Runs at the end of git flow release create finish | ||
# | ||
# Positional arguments: | ||
# $1 The version (including the version prefix) | ||
# $2 The origin remote | ||
# $3 The full branch name (including the release prefix) | ||
# | ||
# The following variables are available as they are exported by git-flow: | ||
# | ||
# MASTER_BRANCH - The branch defined as Master | ||
# DEVELOP_BRANCH - The branch defined as Develop | ||
# | ||
VERSION=$1 | ||
ORIGIN=$2 | ||
BRANCH=$3 | ||
|
||
# Implement your script here. | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/bin/sh | ||
# | ||
# Runs at the end of git flow release create start | ||
# | ||
# Positional arguments: | ||
# $1 The version (including the version prefix) | ||
# $2 The origin remote | ||
# $3 The full branch name (including the release prefix) | ||
# $4 The base from which this release is started | ||
# | ||
# The following variables are available as they are exported by git-flow: | ||
# | ||
# MASTER_BRANCH - The branch defined as Master | ||
# DEVELOP_BRANCH - The branch defined as Develop | ||
# | ||
VERSION=$1 | ||
ORIGIN=$2 | ||
BRANCH=$3 | ||
BASE=$4 | ||
|
||
# Implement your script here. | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/sh | ||
# | ||
# Runs before git flow release create finish | ||
# | ||
# Positional arguments: | ||
# $1 The version (including the version prefix) | ||
# $2 The origin remote | ||
# $3 The full branch name (including the release prefix) | ||
# | ||
# The following variables are available as they are exported by git-flow: | ||
# | ||
# MASTER_BRANCH - The branch defined as Master | ||
# DEVELOP_BRANCH - The branch defined as Develop | ||
# | ||
VERSION=$1 | ||
ORIGIN=$2 | ||
BRANCH=$3 | ||
|
||
# Implement your script here. | ||
|
||
# To terminate the git-flow action, return a non-zero exit code. | ||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/sh | ||
# | ||
# Runs before git flow release create start | ||
# | ||
# Positional arguments: | ||
# $1 The version (including the version prefix) | ||
# $2 The origin remote | ||
# $3 The full branch name (including the release prefix) | ||
# $4 The base from which this release is started | ||
# | ||
# The following variables are available as they are exported by git-flow: | ||
# | ||
# MASTER_BRANCH - The branch defined as Master | ||
# DEVELOP_BRANCH - The branch defined as Develop | ||
# | ||
VERSION=$1 | ||
ORIGIN=$2 | ||
BRANCH=$3 | ||
BASE=$4 | ||
|
||
# Implement your script here. | ||
|
||
# To terminate the git-flow action, return a non-zero exit code. | ||
exit 0 |