fix(ci): Exclusion branche main du workflow CI
Workflow CI s'exécute maintenant uniquement sur branches feature et PRs. Sur main, seul le workflow CD s'exécute (qui appelle CI en interne). Ceci évite les exécutions CI dupliquées.
This commit is contained in:
parent
ae0f3754ad
commit
dc5fc28ff1
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