Skip to content

Commit d52b7c9

Browse files
committed
Allow for manual update
1 parent cb098b0 commit d52b7c9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/test-kikit.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: test-kikit
22
on:
33
push:
44
pull_request:
5+
workflow_dispatch:
56
schedule:
67
- cron: '0 3 * * *'
78
jobs:
@@ -54,7 +55,7 @@ jobs:
5455
name: "Build and deploy Docker container"
5556
runs-on: ubuntu-20.04
5657
needs: test
57-
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')
5859
strategy:
5960
matrix:
6061
build-config:

0 commit comments

Comments
 (0)