File tree Expand file tree Collapse file tree 1 file changed +22
-4
lines changed Expand file tree Collapse file tree 1 file changed +22
-4
lines changed Original file line number Diff line number Diff line change 22name : Coverage
33
44on :
5- workflow_run :
6- workflows : [CI, Skip tests, Windows CI]
7- types : [completed]
5+ push :
6+ branches : [main]
7+ pull_request :
8+ branches : [main]
9+ schedule :
10+ # * is a special character in YAML so you have to quote this string
11+ # Run at 1:00 every day
12+ - cron : 0 1 * * *
13+ workflow_dispatch : {}
814
915jobs :
1016 coverage :
1117 name : Combine & check coverage
12- if : ${{ github.event.workflow_run.conclusion == 'success' }}
1318 runs-on : ubuntu-latest
1419
1520 steps :
1621 - uses : actions/checkout@v5
22+
23+ - name : Wait for other workflows
24+ 25+ with :
26+ ref : ${{ github.ref }}
27+ check-name : |
28+ CI
29+ Skip tests
30+ Windows CI
31+ repo-token : ${{ secrets.GITHUB_TOKEN }}
32+ wait-interval : 10
33+ allowed-conclusions : success
34+
1735 - name : Install uv
1836 uses : astral-sh/setup-uv@v6
1937 with :
You can’t perform that action at this time.
0 commit comments