Skip to content

Commit

Permalink
Merge pull request #1328 from berndpfrommer/add_packaging_trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
varunagrawal authored Nov 16, 2022
2 parents a281e1a + 10e0306 commit a2ffca4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/trigger-packaging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# This triggers building of packages
name: Trigger Package Builds
on:
push:
branches:
- develop
jobs:
trigger-package-build:
runs-on: ubuntu-latest
steps:
- name: Trigger Package Rebuild
uses: actions/github-script@v6
with:
github-token: ${{ secrets.PACKAGING_REPO_ACCESS_TOKEN }}
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'borglab-launchpad',
repo: 'gtsam-packaging',
workflow_id: 'main.yaml',
ref: 'master'
})

0 comments on commit a2ffca4

Please sign in to comment.