mirror of https://github.com/status-im/consul.git
re-enable auto cherry-picking after website launch (#7897)
* re-enable auto cherry-picking after website launch * change to regex since we renamed docs-cherrypick to type/docs-cherrypick
This commit is contained in:
parent
a75e3d9051
commit
38da343790
|
@ -100,14 +100,13 @@ for label in $labels; do
|
|||
git config --local user.email "hashicorp-ci@users.noreply.github.com"
|
||||
git config --local user.name "hashicorp-ci"
|
||||
status "checking label: $label"
|
||||
# TODO: enable this when replatform is merged into stable-website
|
||||
# if the label matches docs-cherrypick, it will attempt to cherry-pick to stable-website
|
||||
# if [[ $label == docs-cherrypick ]]; then
|
||||
# status "backporting to stable-website"
|
||||
# branch="stable-website"
|
||||
# cherry_pick_with_slack_notification "$branch" "$CIRCLE_SHA1" "$pr_url"
|
||||
if [[ $label =~ docs-cherrypick ]]; then
|
||||
status "backporting to stable-website"
|
||||
branch="stable-website"
|
||||
cherry_pick_with_slack_notification "$branch" "$CIRCLE_SHA1" "$pr_url"
|
||||
# else if the label matches backport/*, it will attempt to cherry-pick to the release branch
|
||||
if [[ $label =~ backport/* ]]; then
|
||||
elif [[ $label =~ backport/* ]]; then
|
||||
status "backporting to $label"
|
||||
branch="${label/backport/release}.x"
|
||||
cherry_pick_with_slack_notification "$branch" "$CIRCLE_SHA1" "$pr_url"
|
||||
|
|
Loading…
Reference in New Issue