Browse Source
.github/workflows: enable manual dispatch for some workflows (#5929)
pull/5930/head
Tess Rinearson
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
5 additions and
2 deletions
-
.github/workflows/docs.yml
-
.github/workflows/e2e.yml
-
.github/workflows/proto.yml
|
|
@ -1,7 +1,8 @@ |
|
|
|
name: Documentation |
|
|
|
# This job builds and deploys documenation to github pages. |
|
|
|
# It runs on every push to master. |
|
|
|
# This job builds and deploys documentation to github pages. |
|
|
|
# It runs on every push to master, and can be manually triggered. |
|
|
|
on: |
|
|
|
workflow_dispatch: # allow running workflow manually |
|
|
|
push: |
|
|
|
branches: |
|
|
|
- master |
|
|
|
|
|
@ -2,6 +2,7 @@ name: e2e |
|
|
|
# Runs the CI end-to-end test network on all pushes to master or release branches |
|
|
|
# and every pull request, but only if any Go files have been changed. |
|
|
|
on: |
|
|
|
workflow_dispatch: # allow running workflow manually |
|
|
|
pull_request: |
|
|
|
push: |
|
|
|
branches: |
|
|
|
|
|
@ -2,6 +2,7 @@ name: Protobuf |
|
|
|
# Protobuf runs buf (https://buf.build/) lint and check-breakage |
|
|
|
# This workflow is only run when a .proto file has been modified |
|
|
|
on: |
|
|
|
workflow_dispatch: # allow running workflow manually |
|
|
|
pull_request: |
|
|
|
paths: |
|
|
|
- "**.proto" |
|
|
|