Skip to content

Commit

Permalink
Run CI jobs on wp prefix branches (#29194)
Browse files Browse the repository at this point in the history
  • Loading branch information
talldan authored Feb 24, 2021
1 parent 91c8adb commit 537bfed
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/end2end-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ on:
paths-ignore:
- '**.md'
push:
branches: [master]
branches:
- master
- 'wp/**'
paths-ignore:
- '**.md'

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/static-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ name: Static Analysis (Linting, License, Type checks...)
on:
pull_request:
push:
branches: [master]
branches:
- master
- 'wp/**'

jobs:
check:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ name: Unit Tests
on:
pull_request:
push:
branches: [master, wp-trunk]
branches:
- master
- 'wp/**'

jobs:
unit-js:
Expand Down

0 comments on commit 537bfed

Please sign in to comment.