From d39727d7185b70832093daaaa92264fb834a01ff Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Thu, 24 Feb 2022 13:12:38 +0100 Subject: [PATCH] [BUGFIX] Fix the trigger syntax in the CI builds (#395) The CI workflow with predefined GitHub actions had an empty `on:` element, which is invalid. Use the correct event for manually triggered workflow runs instead. --- .github/workflows/predefined.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/predefined.yml b/.github/workflows/predefined.yml index c9fb5a7..d92d18a 100644 --- a/.github/workflows/predefined.yml +++ b/.github/workflows/predefined.yml @@ -7,6 +7,7 @@ --- name: CI with predefined GitHub actions on: + workflow_dispatch: jobs: php-lint: name: "PHP linter"