Skip to content

Commit c1832ab

Browse files
committed
Fix Conda package workflows on PRs
1 parent ce8ca25 commit c1832ab

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/build-docs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: Build mkl_random documentation
2+
23
on:
34
pull_request:
45
push:

.github/workflows/conda-package-cf.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: Conda package using conda-forge
22

3-
on: push
3+
on:
4+
pull_request:
5+
push:
6+
branches: [master]
47

58
permissions: read-all
69

.github/workflows/conda-package.yml

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

3-
on: push
3+
on:
4+
pull_request:
5+
push:
6+
branches: [master]
47

58
permissions: read-all
69

0 commit comments

Comments
 (0)