fix(ci): Exclusion branche main du workflow CI
CI workflow now runs only on feature branches and PRs. On main, only CD workflow runs (which internally calls CI). This prevents duplicate CI runs.
This commit is contained in:
parent
659465fe9e
commit
924594989e
1 changed files with 3 additions and 1 deletions
|
|
@ -2,7 +2,9 @@ name: CI - Validation
|
|||
|
||||
on:
|
||||
push:
|
||||
branches: ['**'] # All branches
|
||||
branches:
|
||||
- '**'
|
||||
- '!main' # Exclude main branch (CD workflow handles it)
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue