File tree 2 files changed +10
-0
lines changed
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,12 @@ inputs:
35
35
profile :
36
36
description : ' Print cProfile report'
37
37
required : false
38
+ ignore-unused-rpmlintrc :
39
+ description : ' Do not report unused-rpmlintrc-filter errors'
40
+ required : false
41
+ checks :
42
+ description : ' Debugging option that enables only selected checks (separated by comma)'
43
+ required : false
38
44
strict :
39
45
description : ' Treat all messages as errors'
40
46
required : false
56
62
INSTALLED : ${{ inputs.installed }}
57
63
TIME_REPORT : ${{ inputs.time-report }}
58
64
PROFILE : ${{ inputs.profile }}
65
+ IGNORE_UNUSED_RPMLINTRC : ${{ inputs.ignore-unusued-rpmlintrc }}
66
+ CHECKS : ${{ inputs.checks }}
59
67
STRICT : ${{ inputs.strict }}
60
68
PERMISSIVE : ${{ inputs.permissive }}
Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ if [[ -n "${PRINT_CONFIG}" ]]; then ARGUMENTS+=" -p "; fi
12
12
if [[ -n " ${INSTALLED} " ]]; then ARGUMENTS+=" -i ${INSTALLED} " ; fi
13
13
if [[ -n " ${TIME_REPORT} " ]]; then ARGUMENTS+=" -t " ; fi
14
14
if [[ -n " ${PROFILE} " ]]; then ARGUMENTS+=" -T " ; fi
15
+ if [[ -n " ${IGNORE_UNUSED_RPMLINTRC} " ]]; then ARGUMENTS+=" --ignore-unused-rpmlintrc " ; fi
16
+ if [[ -n " ${CHECKS} " ]]; then ARGUMENTS+=" --checks ${CHECKS} " ; fi
15
17
if [[ -n " ${STRICT} " ]]; then ARGUMENTS+=" -s " ; fi
16
18
if [[ -n " ${PERMISSIVE} " ]]; then ARGUMENTS+=" -p " ; fi
17
19
You can’t perform that action at this time.
0 commit comments