Skip to content

Commit 1fc8230

Browse files
committed
apply -> auto
1 parent 860accb commit 1fc8230

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

modulecheck-core/src/main/kotlin/modulecheck/core/ModuleCheckRunner.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ import kotlin.system.measureTimeMillis
3232
* [FindingResult][modulecheck.api.Finding.FindingResult]
3333
* @param reportFactory handles console output of the results
3434
*/
35+
@Suppress("LongParameterList")
3536
class ModuleCheckRunner(
3637
val autoCorrect: Boolean,
3738
val settings: ModuleCheckSettings,

website/docs/ci_workflow.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ flowchart TB
3939
4040
subgraph mGraph [runner 1]
4141
direction TB
42-
ModuleCheck(./gradlew moduleCheckApply):::code --> ChangesModuleCheck
42+
ModuleCheck(./gradlew moduleCheckAuto):::code --> ChangesModuleCheck
4343
ChangesModuleCheck{Graph changes?} --- yesM[yes]:::lineLabel --> CommitModuleCheck(Commit changes and push):::stop
4444
ChangesModuleCheck --- noM[no]:::lineLabel --> EndModuleCheck("#10003;"):::good
4545
end
@@ -113,7 +113,7 @@ jobs:
113113

114114
# performs tree-shaking on the Gradle dependency graph
115115
- name: modulecheck
116-
run: ./gradlew moduleCheckApply --no-daemon
116+
run: ./gradlew moduleCheckAuto --no-daemon
117117

118118
# If ModuleCheck generated changes, commit and push those changes.
119119
# If there are no changes, then this is a no-op.

0 commit comments

Comments
 (0)