File tree 1 file changed +9
-9
lines changed
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 12
12
default : true
13
13
type : choice
14
14
options :
15
- - true
16
- - false
15
+ - " true"
16
+ - " false"
17
17
zaproxy :
18
18
description : " Deseja executar ZaProxy"
19
19
required : true
20
20
default : true
21
21
type : choice
22
22
options :
23
- - true
24
- - false
23
+ - " true"
24
+ - " false"
25
25
sonar-qube :
26
26
description : " Deseja executar SonarQube"
27
27
required : true
28
28
default : true
29
29
type : choice
30
30
options :
31
- - true
32
- - false
31
+ - " true"
32
+ - " false"
33
33
34
34
# defaults:
35
35
# run:
42
42
43
43
jobs :
44
44
quality-gitleaks :
45
- if : ${{ inputs.gitleaks }}
45
+ if : ${{ inputs.gitleaks == "true" }}
46
46
concurrency :
47
47
group : ${{ github.workflow }}-${{ github.ref }}-gitleaks
48
48
cancel-in-progress : true
63
63
GITLEAKS_NOTIFY_USER_LIST : ' @felipementel'
64
64
65
65
quality-zaproxy :
66
- if : ${{ inputs.zaproxy }}
66
+ if : ${{ inputs.zaproxy == "true" }}
67
67
concurrency :
68
68
group : ${{ github.workflow }}-${{ github.ref }}-zaproxy
69
69
cancel-in-progress : true
84
84
# cmd_options: "-z -config view.locale=pt_BR -version -daemon"
85
85
86
86
quality-sonarqube :
87
- if : ${{ inputs.sonar-qube }}
87
+ if : ${{ inputs.sonar-qube == "true" }}
88
88
concurrency :
89
89
group : ${{ github.workflow }}-${{ github.ref }}-sonarqube
90
90
cancel-in-progress : true
You can’t perform that action at this time.
0 commit comments