Skip to content

Commit eb64cb9

Browse files
authored
Run integration workflow for 5.2.0 branch (#3681)
Currently integration workflow runs for versioned like `4.x` (generic major version branch), `5.0.x` (generic minor version branch). But we also need it for `5.2.0` like specific minor version branches. For this purpose, I have used a common pattern instead of adding a new pattern.
1 parent 335fc7c commit eb64cb9

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/integration.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,11 @@ on:
1010
- '**/*.rst'
1111
branches:
1212
- master
13-
- '[0-9].x'
14-
- '[0-9].[0-9].x'
13+
- '[0-9].*'
1514
pull_request:
1615
branches:
1716
- master
18-
- '[0-9].x'
19-
- '[0-9].[0-9].x'
17+
- '[0-9].*'
2018
schedule:
2119
- cron: '0 1 * * *' # nightly build
2220
workflow_dispatch:

0 commit comments

Comments
 (0)