26 lines
919 B
YAML
26 lines
919 B
YAML
name: Trigger OSS to Enterprise Merge
|
|
on:
|
|
pull_request_target:
|
|
types:
|
|
- closed
|
|
branches:
|
|
- main
|
|
- 'release/*.*.x'
|
|
|
|
jobs:
|
|
trigger-oss-merge:
|
|
# run this only on merge events in OSS repo
|
|
if: ${{ github.event.pull_request.merged && github.repository == 'hashicorp/consul' }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Trigger Merge
|
|
env:
|
|
GIT_REF: ${{ github.ref_name }}
|
|
GIT_SHA: ${{ github.sha }}
|
|
GH_PAT: ${{ secrets.ELEVATED_GITHUB_TOKEN }}
|
|
GIT_ACTOR: ${{ github.actor }}
|
|
run: |
|
|
curl -H "Authorization: token $GH_PAT" \
|
|
-H 'Accept: application/json' \
|
|
-d "{\"event_type\": \"oss-merge\", \"client_payload\": {\"git-ref\": \"${GIT_REF}\", \"git-sha\": \"${GIT_SHA}\", \"git-actor\": \"${GIT_ACTOR}\" }}" \
|
|
"https://api.github.com/repos/hashicorp/consul-enterprise/dispatches" |