We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
properties
1 parent 5b09d9a commit 18ccafaCopy full SHA for 18ccafa
1 file changed
gradle-modules/src/main/kotlin/org/sonarsource/cloudnative/gradle/CommonSettingsPlugin.kt
@@ -97,6 +97,11 @@ open class CommonSettingsPlugin
97
value("Branch", System.getenv("CIRRUS_BRANCH"))
98
value("PR", System.getenv("CIRRUS_PR"))
99
value("PR Title", System.getenv("CIRRUS_PR_TITLE"))
100
+
101
+ capture {
102
+ // `properties` task can log sensitive information, so we disable uploading of build logs for it
103
+ buildLogging = "properties" !in startParameter.taskNames
104
+ }
105
}
106
107
0 commit comments