ci: restrict GHA workflow triggers on push
This commit is contained in:
parent
eed826f8a7
commit
77c8c9093b
6
.github/workflows/integration.yml
vendored
6
.github/workflows/integration.yml
vendored
@ -1,5 +1,9 @@
|
||||
name: integration
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
integration-tests:
|
||||
|
6
.github/workflows/linux.yml
vendored
6
.github/workflows/linux.yml
vendored
@ -1,5 +1,9 @@
|
||||
name: linux
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
|
6
.github/workflows/mac.yml
vendored
6
.github/workflows/mac.yml
vendored
@ -1,5 +1,9 @@
|
||||
name: mac
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
|
6
.github/workflows/windows.yml
vendored
6
.github/workflows/windows.yml
vendored
@ -1,5 +1,9 @@
|
||||
name: windows
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
|
Loading…
Reference in New Issue
Block a user