Skip to content

Commit 673b486

Browse files
committed
Don't double-run CI on my PRs
1 parent 2f27701 commit 673b486

File tree

10 files changed

+40
-10
lines changed

10 files changed

+40
-10
lines changed

.github/workflows/asan.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
on: [push, pull_request]
1+
on:
2+
push:
3+
branches: [master]
4+
pull_request:
25
name: Address sanitizer
36
jobs:
47
test:

.github/workflows/coverage.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
on: [push, pull_request]
1+
on:
2+
push:
3+
branches: [master]
4+
pull_request:
25
name: coverage
36
jobs:
47
test:

.github/workflows/deny.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
on: [push, pull_request]
1+
on:
2+
push:
3+
branches: [master]
4+
pull_request:
25
name: cargo deny
36
jobs:
47
check:

.github/workflows/features.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
on: [push, pull_request]
1+
on:
2+
push:
3+
branches: [master]
4+
pull_request:
25
name: cargo hack
36
jobs:
47
check:

.github/workflows/lsan.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
on: [push, pull_request]
1+
on:
2+
push:
3+
branches: [master]
4+
pull_request:
25
name: Leak sanitizer
36
jobs:
47
test:

.github/workflows/minimal.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
on: [push, pull_request]
1+
on:
2+
push:
3+
branches: [master]
4+
pull_request:
25
name: With dependencies at minimal versions
36
jobs:
47
test:

.github/workflows/miri.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
on: [push, pull_request]
1+
on:
2+
push:
3+
branches: [master]
4+
pull_request:
25
name: Miri
36
jobs:
47
test:

.github/workflows/msrv.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
on: [push, pull_request]
1+
on:
2+
push:
3+
branches: [master]
4+
pull_request:
25
name: Minimum Supported Rust Version
36
jobs:
47
check:

.github/workflows/style.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
on: [push, pull_request]
1+
on:
2+
push:
3+
branches: [master]
4+
pull_request:
25
name: lint
36
jobs:
47
style:

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
on: [push, pull_request]
1+
on:
2+
push:
3+
branches: [master]
4+
pull_request:
25
name: cargo test
36
jobs:
47
test:

0 commit comments

Comments
 (0)