Skip to content

Commit dd988f6

Browse files
committed
ENH: Avoid triggering GitHub Actions workflow on both upstream and fork
1 parent 5493a20 commit dd988f6

File tree

3 files changed

+27
-3
lines changed

3 files changed

+27
-3
lines changed

.github/workflows/build-test-package.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
name: Build, test, package
22

3-
on: [push,pull_request]
3+
on:
4+
push:
5+
branches:
6+
- master
7+
tags:
8+
- '*'
9+
pull_request:
10+
branches:
11+
- master
412

513
jobs:
614
cxx-build-workflow:

.github/workflows/clang-format-linter.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
name: clang-format linter
22

3-
on: [push,pull_request]
3+
on:
4+
push:
5+
branches:
6+
- master
7+
tags:
8+
- '*'
9+
pull_request:
10+
branches:
11+
- master
412

513
jobs:
614
lint:

.github/workflows/wasm.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
name: WebAssembly
22

3-
on: [push,pull_request]
3+
on:
4+
push:
5+
branches:
6+
- master
7+
tags:
8+
- '*'
9+
pull_request:
10+
branches:
11+
- master
412

513
jobs:
614
build-wasm:

0 commit comments

Comments
 (0)