Skip to content

Commit

Permalink
Run GH ACtion also on release branches (#1785)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyharisch authored Sep 27, 2023
1 parent 1608a32 commit a65ae6b
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 5 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/lint-golangci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
name: pull-cli-lint
on:
pull_request:
branches: [ "main" ]
branches:
- main
- 'release-**'
paths:
- 'go.mod'
- 'go.sum'
- '**.go'
workflow_dispatch:
jobs:
golangci:
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/test-e2e-create-module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,17 @@ name: TestSuite E2E - create module

on:
push:
branches: [ "main" ]
branches:
- main
- 'release-**'
pull_request:
branches: [ "main" ]
branches:
- main
- 'release-**'
paths:
- 'go.mod'
- 'go.sum'
- '**.go'
jobs:
e2e:
strategy:
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/test-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,17 @@ name: TestSuite Smoke

on:
push:
branches: [ "main" ]
branches:
- main
- 'release-**'
pull_request:
branches: [ "main" ]
branches:
- main
- 'release-**'
paths:
- 'go.mod'
- 'go.sum'
- '**.go'
jobs:
cli-deploy:
name: "kyma deploy"
Expand Down

0 comments on commit a65ae6b

Please sign in to comment.