Skip to content

Commit e581d0c

Browse files
committed
Remove workflow run trigger for coverage as it's useless across multiple branches
1 parent 05c5adf commit e581d0c

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

.github/workflows/coverage.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
name: coverage
22
run-name: Coverage
33
on:
4-
workflow_run:
5-
workflows: ["linux"]
6-
types:
7-
- completed
4+
push:
85
branches:
9-
- master
10-
- 0.15.x
116
- 0.14.x
7+
paths:
8+
- '**.zig'
9+
- '**.zon'
10+
- 'integration_tests/test_cases/**'
11+
pull_request:
12+
paths:
13+
- '**.zig'
14+
- '**.zon'
15+
- 'integration_tests/test_cases/**'
1216
jobs:
1317
coverage:
1418
if: github.event.workflow_run.conclusion == 'success' && github.repository_owner == 'KurtWagner'

.github/workflows/linux.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ run-name: Linux Tests
33
on:
44
push:
55
branches:
6-
- master
76
- 0.14.x
87
paths:
98
- '**.zig'

.github/workflows/windows.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ run-name: Windows Tests
33
on:
44
push:
55
branches:
6-
- master
76
- 0.14.x
87
paths:
98
- '**.zig'

0 commit comments

Comments
 (0)