From ff97793f60d177f97d0e5df9bcb60d76fc84513d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=B6nig?= Date: Fri, 15 Sep 2023 20:47:58 +0200 Subject: [PATCH] Allow build workflow to be trigged by workflow_dispatch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christian König --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5b4b3738..1b52a619 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,6 +7,7 @@ on: pull_request: release: types: [published] + workflow_dispatch: jobs: smoke-tests: @@ -14,6 +15,7 @@ jobs: github.event_name == 'push' || github.event_name == 'release' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository) + || github.event_name == 'workflow_dispatch' outputs: GIT_TAG: ${{ steps.variables.outputs.GIT_TAG }}