From 750240266d4290c1ad55c9be12e90e2db22d599e Mon Sep 17 00:00:00 2001 From: Fan Jiang Date: Tue, 10 Mar 2020 13:58:38 -0400 Subject: [PATCH] Add triggering for python build --- .github/workflows/trigger-python.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/trigger-python.yml diff --git a/.github/workflows/trigger-python.yml b/.github/workflows/trigger-python.yml new file mode 100644 index 000000000..5a49348fe --- /dev/null +++ b/.github/workflows/trigger-python.yml @@ -0,0 +1,13 @@ +name: Trigger Python Builds +on: push +jobs: + triggerCython: + runs-on: ubuntu-latest + steps: + - name: Repository Dispatch + uses: ProfFan/repository-dispatch@master + with: + token: ${{ secrets.PYTHON_CI_REPO_ACCESS_TOKEN }} + repository: borglab/gtsam-manylinux-build + event-type: cython-wrapper + client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}' \ No newline at end of file