From de5c407c1a3a8e813d9debe1ae7326fb98fa8eab Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Mon, 3 Jan 2022 01:54:00 +0100 Subject: [PATCH] [BUGFIX] Fix CI builds for PRs from forks (#360) It has turned out that having builds only for pushes (but not pull requests) is not enough for triggering builds for PRs from forks. So we will need to live with pushes to non-PR branches other than main not triggering a build, and having to create a dummy draft PR for testing the CI build. This reverts commit d1f02afe7975c6f66221077aca077f71f84bcbdf. Fixes #359 --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b8df86d..262b1c5f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,6 +4,9 @@ name: CI with Composer scripts on: push: + branches: + - main + pull_request: schedule: - cron: '15 3 * * 1' jobs: