Skip to content

Commit 3f3f006

Browse files
authored
.github/workflows: Enable workflow_dispatch event triggers (#2464)
Signed-off-by: timflannagan <[email protected]>
1 parent a2142c1 commit 3f3f006

9 files changed

+9
-1
lines changed

.github/workflows/build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: build
22
on:
33
pull_request:
4+
workflow_dispatch:
45
jobs:
56
image:
67
runs-on: ubuntu-latest

.github/workflows/e2e-tests.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
branches:
55
- master
66
pull_request:
7+
workflow_dispatch:
78
jobs:
89
e2e-tests:
910
runs-on: ubuntu-latest

.github/workflows/goreleaser.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
tags:
66
- 'v*'
7-
7+
workflow_dispatch:
88
jobs:
99
release:
1010
runs-on: ubuntu-latest

.github/workflows/quickstart.yml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
pull_request:
44
paths:
55
- 'deploy/upstream/quickstart/**'
6+
workflow_dispatch:
67
jobs:
78
install-quickstart:
89
runs-on: ubuntu-latest

.github/workflows/run-kind-local.yml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
pull_request:
44
schedule:
55
- cron: '0 0 * * *' # daily to pick up releases
6+
workflow_dispatch:
67
jobs:
78
e2e-kind:
89
runs-on: ubuntu-latest

.github/workflows/run-minikube-local.yml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
pull_request:
44
schedule:
55
- cron: '0 0 * * *' # daily to pick up releases
6+
workflow_dispatch:
67
jobs:
78
e2e-minikube:
89
runs-on: ubuntu-latest

.github/workflows/sanity.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
branches:
55
- '**'
66
pull_request:
7+
workflow_dispatch:
78
jobs:
89
sanity:
910
runs-on: ubuntu-latest

.github/workflows/unit.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
branches:
55
- master
66
pull_request:
7+
workflow_dispatch:
78
jobs:
89
unit:
910
runs-on: ubuntu-latest

.github/workflows/verify.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
branches:
55
- master
66
pull_request:
7+
workflow_dispatch:
78
jobs:
89
verify:
910
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)