mirror of https://github.com/hashicorp/boundary
chore: Add downstream merge triggers (#2524)
Trigger a downstream merge. This requires that the DOWNSTREAM_SLUG environment variable is set in CircleCI. This will trigger downstream merges for main and all release branches.pull/2526/head
parent
51de0878c3
commit
f39833ebad
@ -0,0 +1,7 @@
|
||||
executor: go-machine-medium
|
||||
steps:
|
||||
- checkout
|
||||
- run:
|
||||
name: "Trigger Merge to Downstream"
|
||||
command: |
|
||||
./scripts/trigger-merge-to-downstream ${CIRCLE_BRANCH}
|
||||
@ -1,7 +0,0 @@
|
||||
executor: go-machine-medium
|
||||
steps:
|
||||
- checkout
|
||||
- run:
|
||||
name: "Trigger Merge to Enterprise"
|
||||
command: |
|
||||
./scripts/trigger-merge-to-ent
|
||||
@ -1,6 +1,7 @@
|
||||
jobs:
|
||||
- trigger-merge-to-ent:
|
||||
- trigger-merge-to-downstream:
|
||||
filters:
|
||||
branches:
|
||||
only:
|
||||
- main
|
||||
- /release\/.*/
|
||||
@ -0,0 +1,24 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
BRANCH=${1:="main"}
|
||||
|
||||
if [[ -z "${DOWNSTREAM_SLUG}" ]]; then
|
||||
echo "skipping, no downstream"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [[ -z "${CIRCLE_REPOSITORY_URL}" ]]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [[ "${CIRCLE_REPOSITORY_URL}" == *"boundary-${DOWNSTREAM_SLUG}"* ]]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [[ -z ${CIRCLE_CI_DOWNSTREAM_TOK} ]]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
curl -u "${CIRCLE_CI_DOWNSTREAM_TOK}:" \
|
||||
-d "build_parameters[CIRCLE_JOB]=merge-from-upstream" \
|
||||
"https://circleci.com/api/v1.1/project/github/hashicorp/boundary-${DOWNSTREAM_SLUG}/tree/${BRANCH}"
|
||||
@ -1,17 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
if [[ -z "${CIRCLE_REPOSITORY_URL}" ]]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [[ "${CIRCLE_REPOSITORY_URL}" == *"boundary-enterprise"* ]]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [[ -z ${CIRCLE_CI_ENT_TOK} ]]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
curl -u ${CIRCLE_CI_ENT_TOK}: \
|
||||
-d 'build_parameters[CIRCLE_JOB]=merge-oss-main' \
|
||||
https://circleci.com/api/v1.1/project/github/hashicorp/boundary-enterprise/tree/main
|
||||
Loading…
Reference in new issue