From e5ff51bf604237f72d1458e654c852a1477237fb Mon Sep 17 00:00:00 2001 From: Wouter Born Date: Thu, 27 Feb 2025 11:15:45 +0100 Subject: [PATCH] Fix CI/CD not using pull_request events When the pull_request event is not used only the push event is used causing backend tests not to run. --- .github/workflows/ci_cd.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 7576cfbf3..217a29900 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -13,6 +13,9 @@ on: - '.ci_cd/**' - '**/*.md' + # PR + pull_request: + # When a release is published release: types: [published]