From ef111a512575793b2984c2283567561ef247d52b Mon Sep 17 00:00:00 2001 From: Robert Gildein Date: Thu, 11 Apr 2024 11:09:48 +0200 Subject: [PATCH] change from workflow_call to workflow_dispatch (#24) Like this, we can automatically trigger this workflow by our weekly tests. --- .github/workflows/check.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index add6285..5df4f72 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -1,7 +1,7 @@ name: Check workflow running linter, unit and functional tests on: - workflow_call: + workflow_dispatch: pull_request: types: [opened, synchronize, reopened] branches: [master, main]