Skip to content

Commit

Permalink
Run test workflows on feature branches (#222)
Browse files Browse the repository at this point in the history
Co-authored-by: Simon Beal <simobeal@amazon.com>
  • Loading branch information
muddyfish and Simon Beal committed Jul 18, 2024
1 parent d20d66a commit 1e1c801
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: E2E Tests

on:
push:
branches: [ "main", "release-**" ]
branches: [ "main", "release-**", "feature/*" ]
pull_request:
branches: [ "main" ]
branches: [ "main", "feature/*" ]
paths:
- 'tests/**'
- 'pkg/**'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Unit tests

on:
push:
branches: [ "main" ]
branches: [ "main", "feature/*" ]
pull_request:
branches: [ "main" ]
branches: [ "main", "feature/*" ]

jobs:
build:
Expand Down

0 comments on commit 1e1c801

Please sign in to comment.