We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49812ec commit 658e3c6Copy full SHA for 658e3c6
.github/actions/release-branches/release-branches.py
@@ -46,7 +46,7 @@ def main():
46
if consider_backports:
47
for i in range(int(major_version.strip("v"))-1, 0, -1):
48
branch_name = f"releases/v{i}"
49
- if i >= OLDEST_SUPPORTED_MAJOR_VERSION:
+ if i >= int(OLDEST_SUPPORTED_MAJOR_VERSION):
50
backport_target_branches.append(branch_name)
51
52
f.write("backport_target_branches="+json.dumps(backport_target_branches)+"\n")
0 commit comments