File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 3
3
- local : conf/gitlab-ci/*.gitlab-ci.yml
4
4
5
5
workflow :
6
- name : ' $PIPELINE_NAME'
6
+ name : $PIPELINE_NAME
7
7
rules :
8
8
- if : $CI_MERGE_REQUEST_IID # Run pipeline on Merge Requests
9
9
variables :
@@ -13,7 +13,7 @@ workflow:
13
13
PIPELINE_NAME : ' Release pipeline for $CI_COMMIT_TAG'
14
14
- if : $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH # Run pipeline on 'main' branch
15
15
variables :
16
- PIPELINE_NAME : ' Publication pipeline'
16
+ PIPELINE_NAME : Publication pipeline
17
17
18
18
default :
19
19
interruptible : true
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ include:
35
35
36
36
code_quality :
37
37
extends : .runner_inria
38
+ needs : []
38
39
artifacts :
39
40
paths :
40
41
- gl-code-quality-report.json
Original file line number Diff line number Diff line change @@ -27,8 +27,7 @@ import { networkSolution } from '@app/doc/network/solutions/networkSolution'
27
27
changeDetection : ChangeDetectionStrategy . OnPush ,
28
28
} )
29
29
export class NavComponent implements OnDestroy {
30
- @Input ( )
31
- selected : Folder
30
+ @Input ( ) selected : Folder
32
31
33
32
// Folders
34
33
public local : Folder
You can’t perform that action at this time.
0 commit comments