Skip to content

Commit

Permalink
chore: Add 'feat/**' as branch for PR-based Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
c-pius committed Jul 3, 2024
1 parent 4575398 commit 582a1fe
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/check-api-compatibility.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: "Check API Version Compatibility"

on:
pull_request:
branches: [ "main" ]
branches:
- main
- feat/**

jobs:
check-api-version-diff:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/check-manifest-diffs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ env:

on:
pull_request:
branches: [ "main" ]
branches:
- main
- feat/**
types:
- "opened"
- "synchronize"
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/lint-golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Lint golangci

on:
pull_request:
branches: [ "main" ]
branches:
- main
- feat/**
workflow_dispatch:
jobs:
golangci:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
pull_request:
branches:
- main
- feat/**
workflow_dispatch:
inputs:
k8s_version:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: TestSuite Smoke

on:
pull_request:
branches: [ "main" ]
branches:
- main
- feat/**
jobs:
wait-for-image-build:
name: Wait for image build
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: TestSuite integration and unit tests

on:
pull_request:
branches: [ "main" ]
branches:
- main
- feat/**
jobs:
envtest-and-unittest:
name: "Run 'make test'"
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/verify-unit-test-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Verify Unit Test Coverage

on:
pull_request:
branches: [ "main" ]
branches:
- main
- feat/**

env:
coverage_guard: ${{ github.workspace }}/scripts/coverage-metrics/bin/utils/unit-test-coverage/coverage_guard.py
Expand Down

0 comments on commit 582a1fe

Please sign in to comment.