Skip to content

Commit

Permalink
ci: restrict GHA workflow triggers on push
Browse files Browse the repository at this point in the history
  • Loading branch information
calebcartwright committed Nov 15, 2020
1 parent aa59f92 commit 8d68652
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: integration
on: [push, pull_request]
on:
push:
branches:
- master
pull_request:

jobs:
integration-tests:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: linux
on: [push, pull_request]
on:
push:
branches:
- master
pull_request:

jobs:
test:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/mac.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: mac
on: [push, pull_request]
on:
push:
branches:
- master
pull_request:

jobs:
test:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: windows
on: [push, pull_request]
on:
push:
branches:
- master
pull_request:

jobs:
test:
Expand Down

0 comments on commit 8d68652

Please sign in to comment.