-
Notifications
You must be signed in to change notification settings - Fork 102
/
action.yaml
42 lines (39 loc) · 1.22 KB
/
action.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: "SonarQube Scan"
description: "Scan your code with SonarQube Scanner to detect bugs, vulnerabilities and code smells in more than 25 programming languages."
author: "Dwi Siswanto"
branding:
icon: "check"
color: "green"
runs:
using: "docker"
image: "Dockerfile"
inputs:
host:
description: "SonarQube server URL."
required: true
projectKey:
description: "The project's unique key. Allowed characters are: letters, numbers, -, _, . and :, with at least one non-digit."
required: false
default: ""
projectName:
description: "Name of the project that will be displayed on the web interface."
required: false
default: ""
projectVersion:
description: "The project version."
required: false
default: ""
projectBaseDir:
description: "Set the sonar.projectBaseDir analysis property."
required: false
default: "."
login:
description: "Login or authentication token of a SonarQube user."
required: true
password:
description: "Password that goes with the sonar.login username. This should be left blank if an authentication token is being used."
required: false
encoding:
description: "Encoding of the source code."
required: false
default: "UTF-8"