Skip to content

Commit

Permalink
Added manual workflow trigger for release branch. (kubeflow#3002)
Browse files Browse the repository at this point in the history
Signed-off-by: Andrews Arokiam <andrews.arokiam@ideas2it.com>
  • Loading branch information
andyi2it authored Jul 7, 2023
1 parent ee0ff96 commit 834e80c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@ name: E2E Tests

on:
pull_request:
branches: [master]
branches: [master, release*]
paths:
- '**'
- '!.github/**'
- '!docs/**'
- '!**.md'
- '.github/workflows/e2e-test.yml'
workflow_dispatch:

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ name: Go

on:
push:
branches: [ master ]
branches: [master, release*]
pull_request:
branches: []
workflow_dispatch:

jobs:

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
release:
types: [created]

workflow_dispatch:
jobs:
deploy:

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ name: Python package

on:
push:
branches: [master]
branches: [master, release*]
pull_request:
branches: []
workflow_dispatch:

jobs:
flake8-lint:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 834e80c

Please sign in to comment.