We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb098b0 commit d52b7c9Copy full SHA for d52b7c9
.github/workflows/test-kikit.yml
@@ -2,6 +2,7 @@ name: test-kikit
2
on:
3
push:
4
pull_request:
5
+ workflow_dispatch:
6
schedule:
7
- cron: '0 3 * * *'
8
jobs:
@@ -54,7 +55,7 @@ jobs:
54
55
name: "Build and deploy Docker container"
56
runs-on: ubuntu-20.04
57
needs: test
- if: github.ref == 'refs/heads/master' && github.event_name == 'schedule'
58
+ if: github.ref == 'refs/heads/master' && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch')
59
strategy:
60
matrix:
61
build-config:
0 commit comments