From acdb1741f1d781ea08ec21089834b5f4bc290246 Mon Sep 17 00:00:00 2001 From: Mahmoud Ben Hassine Date: Mon, 30 Sep 2024 13:20:17 +0200 Subject: [PATCH] Add workflow_dispatch trigger to the CI build This is needed to manually trigger the workflow without having to push a commit to the main branch. The typical use case is when an upstream dependency causes a build failure in the latest snapshot and we want to test the fix by triggering a new build on github. --- .github/workflows/continuous-integration.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index fb735ac91..37dc5a692 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -1,6 +1,7 @@ name: CI/CD build on: + workflow_dispatch: push: branches: [ "main" ]