Fixing Run CI Check for Changed Files (#3072)

* Fixing check for changed files

* Testing CI skip behavior

* Testing CI Trigger

This should skip CI

---------

Co-authored-by: Illia Silin <98187287+illsilin@users.noreply.github.com>

[ROCm/composable_kernel commit: 775b96ea6a]
This commit is contained in:
andrew clark
2025-10-24 08:52:43 -06:00
committed by GitHub
parent c4448c9d7c
commit 07d67497ff

2
Jenkinsfile vendored
View File

@@ -71,7 +71,7 @@ def shouldRunCICheck() {
'''
).trim().split('\n')
if (changedFiles.isEmpty() || (changedFiles.size() == 1 && changedFiles[0].trim().isEmpty())) {
if (changedFiles.size() == 1 && changedFiles[0] == '') {
echo "No changed files detected - this might be a manual trigger or merge commit, running CI for safety"
return true
}