fix(autoware_multi_object_tracker): tracker update path, shape gating, and association data structure #65326
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This file is automatically synced from: | |
| # https://github.com/autowarefoundation/sync-file-templates | |
| # To make changes, update the source repository and follow the guidelines in its README. | |
| name: deploy-docs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - mkdocs.yaml | |
| - "**/*.md" | |
| - "**/*.svg" | |
| - "**/*.png" | |
| - "**/*.jpg" | |
| pull_request_target: | |
| types: | |
| - opened | |
| - synchronize | |
| - labeled | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| make-sure-label-is-present: | |
| uses: autowarefoundation/autoware-github-actions/.github/workflows/make-sure-label-is-present.yaml@v1 | |
| with: | |
| label: run:deploy-docs | |
| deploy-docs: | |
| needs: make-sure-label-is-present | |
| if: ${{ github.event_name != 'pull_request_target' || needs.make-sure-label-is-present.outputs.result == 'true' }} | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: Deploy docs | |
| uses: autowarefoundation/autoware-github-actions/deploy-docs@v1 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| latest: ${{ github.event_name != 'pull_request_target' && github.ref_name == github.event.repository.default_branch }} |