Skip to content

Commit

Permalink
ci: change glob pattern to 2.*
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentC35 committed Oct 13, 2023
1 parent 5de8669 commit ca64df8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-main.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Main CI
on:
push:
# on branche like main or 2.6, 2.64, 10.12
branches: ['main', '[0-9]+.[0-9]+']
# on branche like main or 2.6, 2.64
branches: ['main', '2.*']
pull_request:
branches: ['main', '[0-9]+.[0-9]+']
branches: ['main', '2.*']

jobs:
test_lint:
Expand Down

0 comments on commit ca64df8

Please sign in to comment.