From fe4450ee3ef5866bccf61733dc7ce802f68c09b8 Mon Sep 17 00:00:00 2001 From: Frantisek Sumsal Date: Mon, 15 Aug 2022 21:52:06 +0200 Subject: [PATCH] ci: run CIs on push events as well Let's cover merges into main with CIs too. --- .github/workflows/build.yml | 6 +++++- .github/workflows/install.yml | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 289c1e2..93f1bb1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,7 +3,11 @@ # SPDX-License-Identifier: LGPL-2.1-or-later # name: Build test -on: [pull_request] +on: + pull_request: + push: + branches: + - main permissions: contents: read diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml index 0ae5260..6a8cc39 100644 --- a/.github/workflows/install.yml +++ b/.github/workflows/install.yml @@ -3,7 +3,11 @@ # SPDX-License-Identifier: LGPL-2.1-or-later # name: Install test -on: [pull_request] +on: + pull_request: + push: + branches: + - main permissions: contents: read