-
Notifications
You must be signed in to change notification settings - Fork 37
/
action.yaml
75 lines (75 loc) · 2.6 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: 'Qodana Scan'
description: 'Scan your projects with Qodana on GitHub. Docs: https://jb.gg/qodana-github-action'
author: 'JetBrains'
branding:
color: "black"
icon: "bar-chart-2"
inputs:
args:
description: 'Additional Qodana CLI arguments. Separate multiple arguments with commas (`,`).'
required: false
default: ""
results-dir:
description: 'Directory to store the analysis results'
required: false
default: "${{ runner.temp }}/qodana/results"
cache-dir:
description: 'Directory to store Qodana caches'
required: false
default: "${{ runner.temp }}/qodana/caches"
use-caches:
description: 'Automatically restore and save Qodana caches using GitHub caches'
required: false
default: "true"
primary-cache-key:
description: 'Set the primary cache key'
required: false
default: "qodana-2024.2-${{ github.ref }}-${{ github.sha }}"
additional-cache-key:
description: 'Set the additional cache key'
required: false
default: "qodana-2024.2-${{ github.ref }}"
cache-default-branch-only:
description: 'Upload cache for the default branch only'
required: false
default: "false"
upload-result:
description: 'Upload Qodana results (SARIF, other artifacts, logs) as an artifact to the job'
required: false
default: "false"
artifact-name:
description: 'Specify Qodana results artifact name, used for results uploading'
required: false
default: "qodana-report"
use-annotations:
description: 'Use annotations to mark the results in the GitHub user interface'
required: false
default: "true"
pr-mode:
description: 'Analyze ONLY changed files in a pull request'
required: false
default: "true"
post-pr-comment:
description: 'Post a comment with the Qodana results summary to the pull request'
required: false
default: "true"
github-token:
description: 'GitHub token to access the repository: post annotations, comments'
required: false
default: "${{ github.token }}"
push-fixes:
description: 'Push Qodana fixes to the repository, can be none, branch to the current branch, or a pull request'
required: false
default: "none"
commit-message:
description: 'Commit message for the commit with quick-fixes. Not used if `push-fixes` is set to `none`'
required: false
default: "🤖 Apply quick-fixes by Qodana"
use-nightly:
description: 'Use unstable Qodana CLI nightly'
required: false
default: "false"
deprecationMessage: 'This option is for development purposes only. Do not use it in production.'
runs:
using: 'node20'
main: 'scan/dist/index.js'