Skip to content

Commit 4d445cc

Browse files
Merge pull request #144 from JuliaDocs/MichaelHatherly-patch-1
Only run CI `push` trigger when on `master`/tags
2 parents a48aa91 + 55902c5 commit 4d445cc

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
name: CI
22
on:
3-
- push
4-
- pull_request
3+
pull_request:
4+
push:
5+
branches:
6+
- master
7+
tags:
8+
- '*'
59
jobs:
610
test:
711
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}

0 commit comments

Comments
 (0)