Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release-4.18] ghactions: enable on stable branches #1112

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
name: CI Base

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
branches:
- main
- "release-4.1[8]"
push:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

env:
GOLANG_VERSION: 1.23.3
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/e2e-local.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ on:
pull_request:
branches:
- main
- "release-4.1[8]"
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
- "v[0-9]+.[0-9]+"

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/e2e-tools.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ on:
pull_request:
branches:
- main
- "release-4.1[8]"
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
- "v[0-9]+.[0-9]+"

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ on:
pull_request:
branches:
- main
- "release-4.1[8]"
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
- "v[0-9]+.[0-9]+"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

defaults:
run:
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/golangci-lint.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
name: CI Linter with golangci-lint

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
branches:
- main
- "release-4.1[8]"
push:
branches:
- main

defaults:
run:
Expand Down
Loading