Skip to content

Commit

Permalink
Run integration workflow for 5.2.0 branch (#3681)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
sazzad16 authored Jan 10, 2024
1 parent 335fc7c commit eb64cb9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,11 @@ on:
- '**/*.rst'
branches:
- master
- '[0-9].x'
- '[0-9].[0-9].x'
- '[0-9].*'
pull_request:
branches:
- master
- '[0-9].x'
- '[0-9].[0-9].x'
- '[0-9].*'
schedule:
- cron: '0 1 * * *' # nightly build
workflow_dispatch:
Expand Down

0 comments on commit eb64cb9

Please sign in to comment.