Skip to content

Commit f10ed60

Browse files
mjansingolleolleolle
authored andcommitted
fix branch pattern (glob instead of regex)
1 parent 3f9c91c commit f10ed60

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ on:
44
push:
55
branches:
66
- master
7-
- /-dev|-feature|-fix/
7+
- '*-dev'
8+
- '*-feature'
9+
- '*-fix'
810

911
pull_request:
1012

@@ -53,4 +55,4 @@ jobs:
5355
run: bundle install --jobs=3 --retry=3
5456

5557
- name: Run tests
56-
run: bundle exec rake ${{ matrix.TASK }}
58+
run: bundle exec rake ${{ matrix.task }}

0 commit comments

Comments
 (0)