Skip to content

Commit e03b554

Browse files
Copilothsluoyz
andcommitted
Fix CI duplicate checks by restricting push events to master branch only
Co-authored-by: hsluoyz <3787410+hsluoyz@users.noreply.github.com>
1 parent 0651063 commit e03b554

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

.github/workflows/benchmark.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@
1414

1515
name: Benchmark
1616

17-
on: [push, pull_request]
17+
on:
18+
push:
19+
branches:
20+
- master
21+
pull_request:
1822

1923
jobs:
2024
benchmark:

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@
1414

1515
name: CI
1616

17-
on: [push, pull_request]
17+
on:
18+
push:
19+
branches:
20+
- master
21+
pull_request:
1822

1923
jobs:
2024
linux:

.github/workflows/memcheck.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@
1414

1515
name: Memcheck
1616

17-
on: [push, pull_request]
17+
on:
18+
push:
19+
branches:
20+
- master
21+
pull_request:
1822

1923
jobs:
2024
linux:

.github/workflows/python_binding.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@
1414

1515
name: Python Bindings Test
1616

17-
on: [push, pull_request]
17+
on:
18+
push:
19+
branches:
20+
- master
21+
pull_request:
1822

1923
jobs:
2024
build:

0 commit comments

Comments
 (0)