Skip to content

Commit

Permalink
Make 2.x as default for check compatibility task (#8270)
Browse files Browse the repository at this point in the history
Signed-off-by: Sayali Gaikawad <[email protected]>
  • Loading branch information
gaiksaya authored Jun 26, 2023
1 parent 0156c55 commit 2c01342
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class CheckCompatibilityTask extends DefaultTask {
List repositoryUrls = project.hasProperty('repositoryUrls') ? project.property('repositoryUrls').split(',') : getRepoUrls()

@Input
String ref = project.hasProperty('ref') ? project.property('ref') : 'main'
String ref = project.hasProperty('ref') ? project.property('ref') : '2.x'

@Internal
List failedComponents = []
Expand Down

0 comments on commit 2c01342

Please sign in to comment.