Skip to content

Commit

Permalink
chore: Enable GitHub workflows on release branches (#426)
Browse files Browse the repository at this point in the history
Signed-off-by: iam-veeramalla <[email protected]>
  • Loading branch information
iam-veeramalla authored Sep 2, 2021
1 parent 0189055 commit 0838b21
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/ci-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,13 @@ on:
push:
branches:
- 'master'
- 'v[0-9]+.[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+'
- 'v[0-9]+.[0-9]+-[0-9a-zA-Z]+'
- 'v[0-9]+.[0-9]+.[0-9]+-[0-9a-zA-Z]+'
- 'release-*'
- 'rhos-*'
pull_request:
branches:
- 'master'
- 'v[0-9]+.[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+'
- 'v[0-9]+.[0-9]+-[0-9a-zA-Z]+'
- 'v[0-9]+.[0-9]+.[0-9]+-[0-9a-zA-Z]+'
- 'release-*'
- 'rhos-*'

jobs:

Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@ name: Go

on:
push:
branches: [ master ]
branches:
- 'master'
- 'release-*'
- 'rhos-*'
pull_request:
branches: [ master ]
branches:
- 'master'
- 'release-*'
- 'rhos-*'

jobs:

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: Integration tests
on:
on:
pull_request:
branches:
- 'master'
- 'release-*'
- 'rhos-*'

jobs:
lint_code:
Expand Down

0 comments on commit 0838b21

Please sign in to comment.