Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge pull request #7145 from seadowg/fix-branches
Correct and simplify branch/tag filtering
  • Loading branch information
seadowg committed Mar 19, 2026
commit 8d95c2d1b7c3bf66f3e38176dbcd54ecd63ac974
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ workflows:
branches:
ignore:
- master
- ^v((20)[0-9]{2})\.\d+\.x$
- /^v\d+\.\d+.x$/
- compile:
requires:
- hold_pr
Expand All @@ -370,7 +370,7 @@ workflows:
branches:
only:
- master
- ^v((20)[0-9]{2})\.\d+\.x$
- /^v\d+\.\d+.x$/
- check_quality:
requires:
- compile
Expand Down Expand Up @@ -412,15 +412,15 @@ workflows:
- compile:
filters:
tags:
only: /^v((20)[0-9]{2})\.\d+\.\d+$/ # matches semvers like v1.2.3
only: /^v\d+\.\d+.\d+$/
branches:
ignore: /.*/
- create_dependency_backup:
requires:
- compile
filters:
tags:
only: /^v((20)[0-9]{2})\.\d+\.\d+$/ # matches semvers like v1.2.3
only: /^v\d+\.\d+.\d+$/
branches:
ignore: /.*/