Skip to content

Commit

Permalink
fix: default no branches for sync on the nightly branch (#1255)
Browse files Browse the repository at this point in the history
  • Loading branch information
bancey authored Jul 16, 2024
1 parent f68ebb6 commit 25e26e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vars/withNightlyPipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def call(type, product, component, timeout = 300, Closure body) {
sectionNightlyTests(callbacksRunner, pipelineConfig, pipelineType, product, component, subscription.nonProdName)
onMaster {
sectionSyncBranchesWithMaster(
branchestoSync: pipelineConfig.branchesToSyncWithMaster,
branchestoSync: pipelineConfig.branchesToSyncWithMaster != null ? pipelineConfig.branchesToSyncWithMaster : [],
product: product
)
}
Expand Down

0 comments on commit 25e26e2

Please sign in to comment.