Skip to content

Commit 40cb08c

Browse files
authored
Merge pull request #2051 from github/angelapwen/patch-release-script
Fix type error in `Update release branch` workflow
2 parents 49812ec + 0be9290 commit 40cb08c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/release-branches/release-branches.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
with open(os.path.join(grandparent_dir, 'releases.ini')) as stream:
1414
config.read_string('[default]\n' + stream.read())
1515

16-
OLDEST_SUPPORTED_MAJOR_VERSION = config['default']['OLDEST_SUPPORTED_MAJOR_VERSION']
16+
OLDEST_SUPPORTED_MAJOR_VERSION = int(config['default']['OLDEST_SUPPORTED_MAJOR_VERSION'])
1717

1818
def main():
1919

0 commit comments

Comments
 (0)