Skip to content

Commit

Permalink
expand workflows to run on releases branches
Browse files Browse the repository at this point in the history
Signed-off-by: Petr Fedchenkov <giggsoff@gmail.com>
(cherry picked from commit 7633455)
  • Loading branch information
giggsoff authored and eriknordmark committed Aug 21, 2021
1 parent b3de2af commit 38a2424
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ name: PR build
on:
pull_request:
branches:
- master
- "master"
- "[0-9]+.[0-9]+"

jobs:
build:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/eden.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
name: Eden
on:
push:
branches: [master]
branches:
- "master"
- "[0-9]+.[0-9]+"
pull_request_review:
branches: [master]
types: [submitted]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- "master"
- "[0-9]+.[0-9]+"
tags:
- "[0-9]+.[0-9]+.[0-9]+"

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ name: Unit tests
on:
pull_request:
branches:
- master
- "master"
- "[0-9]+.[0-9]+"

jobs:
test:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/yetus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
name: Apache Yetus
on: # yamllint disable-line rule:truthy
pull_request:
branches: [master]
branches:
- "master"
- "[0-9]+.[0-9]+"

jobs:
yetus:
Expand Down

0 comments on commit 38a2424

Please sign in to comment.