Skip to content

Commit

Permalink
allow manually triggering workflows (#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
btkostner authored Aug 12, 2020
1 parent 8b568f2 commit 4d3efbd
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/daily-5.1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/daily-6.0-pinebookpro.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/daily-6.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/distinst-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@ name: stable
on:
push:
tags:
- '*'
- "*"
workflow_dispatch:
inputs: []

jobs:
build:
runs-on: ubuntu-latest

container:
image: debian:latest
volumes:
Expand Down

0 comments on commit 4d3efbd

Please sign in to comment.