From e483a98ac72d666e40aa28285375e6ad814b7858 Mon Sep 17 00:00:00 2001 From: Derrick Stolee Date: Fri, 30 Oct 2020 10:13:49 -0400 Subject: [PATCH] Actions: use workflow_dispatch for manually running workflows See [1] for more information. [1] https://github.blog/changelog/2020-07-06-github-actions-manual-triggers-with-workflow_dispatch/ Signed-off-by: Derrick Stolee --- .github/workflows/build-installers.yml | 1 + .github/workflows/build-signed-deb.yml | 1 + .github/workflows/continuous-integration.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/.github/workflows/build-installers.yml b/.github/workflows/build-installers.yml index c202fbf64..71336f45a 100644 --- a/.github/workflows/build-installers.yml +++ b/.github/workflows/build-installers.yml @@ -1,6 +1,7 @@ name: Build-Installers on: + workflow_dispatch: push: branches: [ master, release ] pull_request: diff --git a/.github/workflows/build-signed-deb.yml b/.github/workflows/build-signed-deb.yml index e0d309b0c..3373c072b 100644 --- a/.github/workflows/build-signed-deb.yml +++ b/.github/workflows/build-signed-deb.yml @@ -1,6 +1,7 @@ name: "Build Signed Debian Installer" on: + workflow_dispatch: release: types: [released] diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 7cec30fc9..bffee0884 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -1,6 +1,7 @@ name: GCM-Core on: + workflow_dispatch: push: branches: [ master, linux ] pull_request: