File: trigger-packaging.yml

package info (click to toggle)
gtsam 4.2.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 46,108 kB
  • sloc: cpp: 127,191; python: 14,312; xml: 8,442; makefile: 252; sh: 119; ansic: 101
file content (21 lines) | stat: -rw-r--r-- 582 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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'
            })