Bump VTK for event handler changes #818
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
| name: Build cache preheating | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened, labeled] | |
| branches: | |
| - master | |
| - release | |
| paths-ignore: | |
| - "doc/**" | |
| - "_config.yml" | |
| jobs: | |
| #---------------------------------------------------------------------------- | |
| # Trigger a cache preheating workflow | |
| #---------------------------------------------------------------------------- | |
| build_cache_preheating: | |
| name: Build cache preheating | |
| if: contains(github.event.pull_request.labels.*.name, 'ci:cache') | |
| runs-on: ubuntu-latest | |
| steps: | |
| # This require a F3D_CACHE_CI_DISPATCH secret contain a PAT with read and write admin access | |
| - name: Trigger preheating workflow | |
| uses: convictional/trigger-workflow-and-wait@v1.6.5 | |
| with: | |
| owner: f3d-app | |
| repo: f3d | |
| ref: master | |
| github_token: ${{ secrets.F3D_CACHE_CI_DISPATCH }} | |
| workflow_file_name: cache-preheating.yml | |
| wait_interval: 60 | |
| client_payload: '{"repo": "${{github.event.pull_request.head.repo.full_name}}", "branch": "${{github.event.pull_request.head.ref}}"}' | |
| propagate_failure: true | |
| trigger_workflow: true | |
| wait_workflow: true | |
| - uses: marocchino/sticky-pull-request-comment@v3.0.5 | |
| with: | |
| message: Caches have been generated/checked |