From 4d3efbd17dc877dede423e0677d32fb46ec3bd85 Mon Sep 17 00:00:00 2001 From: Blake Kostner Date: Wed, 12 Aug 2020 13:47:43 -0600 Subject: [PATCH] allow manually triggering workflows (#393) --- .github/workflows/daily-5.1.yml | 5 ++++- .github/workflows/daily-6.0-pinebookpro.yml | 7 ++++++- .github/workflows/daily-6.0.yml | 5 ++++- .github/workflows/distinst-weekly.yml | 5 ++++- .github/workflows/stable.yml | 5 ++++- 5 files changed, 22 insertions(+), 5 deletions(-) diff --git a/.github/workflows/daily-5.1.yml b/.github/workflows/daily-5.1.yml index 26d2dece9..0b9dfeab5 100644 --- a/.github/workflows/daily-5.1.yml +++ b/.github/workflows/daily-5.1.yml @@ -5,11 +5,14 @@ on: branches: - master schedule: - - cron: '0 0 * * *' + - cron: "0 0 * * *" + workflow_dispatch: + inputs: [] jobs: build: runs-on: ubuntu-latest + container: image: debian:latest volumes: diff --git a/.github/workflows/daily-6.0-pinebookpro.yml b/.github/workflows/daily-6.0-pinebookpro.yml index 0ca3a2e73..9c78d5836 100644 --- a/.github/workflows/daily-6.0-pinebookpro.yml +++ b/.github/workflows/daily-6.0-pinebookpro.yml @@ -1,8 +1,13 @@ name: daily-6.0-pinebookpro on: + push: + branches: + - master schedule: - - cron: '0 0 * * *' + - cron: "0 0 * * *" + workflow_dispatch: + inputs: [] jobs: build: diff --git a/.github/workflows/daily-6.0.yml b/.github/workflows/daily-6.0.yml index a0ac5f1ff..381b2b786 100644 --- a/.github/workflows/daily-6.0.yml +++ b/.github/workflows/daily-6.0.yml @@ -5,11 +5,14 @@ on: branches: - master schedule: - - cron: '0 0 * * *' + - cron: "0 0 * * *" + workflow_dispatch: + inputs: [] jobs: build: runs-on: ubuntu-latest + container: image: debian:latest volumes: diff --git a/.github/workflows/distinst-weekly.yml b/.github/workflows/distinst-weekly.yml index 13d430eac..3522774a6 100644 --- a/.github/workflows/distinst-weekly.yml +++ b/.github/workflows/distinst-weekly.yml @@ -2,11 +2,14 @@ name: distinst-weekly on: schedule: - - cron: '0 0 * * 3' + - cron: "0 0 * * 3" + workflow_dispatch: + inputs: [] jobs: build: runs-on: ubuntu-latest + container: image: debian:latest volumes: diff --git a/.github/workflows/stable.yml b/.github/workflows/stable.yml index 69a0a20a6..db4b3e55a 100644 --- a/.github/workflows/stable.yml +++ b/.github/workflows/stable.yml @@ -3,11 +3,14 @@ name: stable on: push: tags: - - '*' + - "*" + workflow_dispatch: + inputs: [] jobs: build: runs-on: ubuntu-latest + container: image: debian:latest volumes: