Skip to content

Commit 218d59a

Browse files
committed
Restrict push trigger to master branch
1 parent 875c85a commit 218d59a

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
name: julia 1.0/1.3
22
on:
3-
- push
4-
- pull_request
3+
push:
4+
branches:
5+
- master
6+
pull_request:
57

68
jobs:
79
testMKLjl:

.github/workflows/nightly.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: julia nightly
22
on:
33
push:
4+
branches:
5+
- master
46
pull_request:
57
schedule:
68
- cron: '1 0 1,15 * *'

0 commit comments

Comments
 (0)