Skip to content

Commit

Permalink
Add support for CI in PRs that target feat/... branches (#1487)
Browse files Browse the repository at this point in the history
- run for feat/ targets
- don't run for epic/ targets (unused atm)
  • Loading branch information
wulfraem authored Dec 6, 2024
1 parent 607a03e commit 43aae13
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ on:
pull_request:
branches:
- main
- 'feat/**'
- 'support/**'
paths:
- "**/Cargo.lock"
- "**/Cargo.toml"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test-grpc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
types: [ opened, synchronize, reopened, ready_for_review ]
branches:
- main
- 'epic/**'
- 'feat/**'
- 'support/**'
paths:
- '.github/workflows/build-and-test.yml'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
types: [ opened, synchronize, reopened, ready_for_review ]
branches:
- main
- 'epic/**'
- 'feat/**'
- 'support/**'
paths:
- '.github/workflows/build-and-test.yml'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:
branches:
- main
- 'epic/**'
- 'feat/**'
- 'support/**'
paths:
- '.github/workflows/clippy.yml'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:
branches:
- main
- 'epic/**'
- 'feat/**'
- 'support/**'
paths:
- '.github/workflows/format.yml'
Expand Down

0 comments on commit 43aae13

Please sign in to comment.