Skip to content

Commit

Permalink
fix: isolate release pr triggers (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
JossWhittle authored Mar 24, 2024
1 parent 465865a commit 9b0f01a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/controller-container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Controller Container

on:
pull_request:
branches:
- '!*/fizzbuzz-chart*'
- '!*/fizzbuzz-crds-chart*'
branches-ignore:
- '*/fizzbuzz-chart*'
- '*/fizzbuzz-crds-chart*'
paths:
- '.github/workflows/controller-container.yaml'
- 'containers/controller/**'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/fizzbuzz-chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Fizzbuzz Chart

on:
pull_request:
branches:
- '!*/controller-container*'
- '!*/fizzbuzz-crds-chart*'
branches-ignore:
- '*/controller-container*'
- '*/fizzbuzz-crds-chart*'
paths:
- '.github/workflows/fizzbuzz-chart.yaml'
- 'charts/fizzbuzz/**'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/fizzbuzz-crds-chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Fizzbuzz CRDs Chart

on:
pull_request:
branches:
- '!*/controller-container*'
- '!*/fizzbuzz-chart*'
branches-ignore:
- '*/controller-container*'
- '*/fizzbuzz-chart*'
paths:
- '.github/workflows/fizzbuzz-crds-chart.yaml'
- 'charts/fizzbuzz-crds/**'
Expand Down

0 comments on commit 9b0f01a

Please sign in to comment.