1
0
mirror of synced 2026-01-06 06:04:16 -05:00
Files
airbyte/.github/workflows/notify-on-push-to-master.yml
Peter Hu 0d3088e456 notify cloud repo on push to master (#12229)
* notify cloud repo on push to master

* split out build-branch action

so we can use it in cloud workflow
2022-04-20 16:53:20 -07:00

19 lines
480 B
YAML

name: Notify Cloud of OSS Push to Master
on:
push:
branches:
- master
workflow_dispatch:
jobs:
repo-sync:
runs-on: ubuntu-latest
steps:
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.OCTAVIA_PAT }}
repository: airbytehq/airbyte-cloud
event-type: oss-push-to-master
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}'