Skip to content

Commit fe4450e

Browse files
committed
ci: run CIs on push events as well
Let's cover merges into main with CIs too.
1 parent d361f0b commit fe4450e

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
# SPDX-License-Identifier: LGPL-2.1-or-later
44
#
55
name: Build test
6-
on: [pull_request]
6+
on:
7+
pull_request:
8+
push:
9+
branches:
10+
- main
711

812
permissions:
913
contents: read

.github/workflows/install.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
# SPDX-License-Identifier: LGPL-2.1-or-later
44
#
55
name: Install test
6-
on: [pull_request]
6+
on:
7+
pull_request:
8+
push:
9+
branches:
10+
- main
711

812
permissions:
913
contents: read

0 commit comments

Comments
 (0)