Skip to content

fix concurrency at global ci.yml level #18

fix concurrency at global ci.yml level

fix concurrency at global ci.yml level #18

Workflow file for this run

---

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

(Line: 20, Col: 12): Job 'call_tasklattice' depends on unknown job 'test_projects'.
name: CI
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.event_name }}
cancel-in-progress: true
jobs:
call_test_projects:
name: Call Test Projects Workflow
uses: ./.github/workflows/_test_projects.yml
secrets: inherit
call_tasklattice:
name: Call TaskLattice Workflow
needs: test_projects
uses: ./.github/workflows/_tasklattice.yml
secrets: inherit