Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/bin/refresh
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,6 @@ foreach ($services as $service => $hasChange) {
exit(1);
}
$parts = explode('.', $lastPackageVersion);
$level = 1;
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this variable is initialized as 1 on line 242. Then, it is updated on line 246 to a value of 0 in case we have changes requiring a major version. But this was lost due to this line.

if (0 === (int) $parts[0]) {
$level = min(2, $level + 1);
}
Expand Down