Skip to content

Commit 8d68652

Browse files
ci: restrict GHA workflow triggers on push
1 parent aa59f92 commit 8d68652

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

Diff for: .github/workflows/integration.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: integration
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
37

48
jobs:
59
integration-tests:

Diff for: .github/workflows/linux.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: linux
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
37

48
jobs:
59
test:

Diff for: .github/workflows/mac.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: mac
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
37

48
jobs:
59
test:

Diff for: .github/workflows/windows.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: windows
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
37

48
jobs:
59
test:

0 commit comments

Comments
 (0)