Skip to content

Commit

Permalink
ci: update branch selection criteria
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Oct 13, 2024
1 parent 58c81b3 commit 93867bc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
branches:
- master
tags:
- 'v[0-9]+\.*'
- 'v\d+\.*'
pull_request:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'
- 'v\d+(\.\d+)*'

env:
CARGO_TERM_COLOR: always
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
branches:
- master
tags:
- 'v[0-9]+\.*'
- 'v\d+\.*'
pull_request:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'
- 'v\d+(\.\d+)*'

env:
CARGO_TERM_COLOR: always
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'
- 'v\d+(\.\d+)*'

env:
CARGO_TERM_COLOR: always
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
branches:
- master
tags:
- 'v[0-9]+\.*'
- 'v\d+\.*'
pull_request:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'
- 'v\d+(\.\d+)*'

env:
CARGO_TERM_COLOR: always
Expand Down

0 comments on commit 93867bc

Please sign in to comment.