Skip to content

Commit

Permalink
Merge pull request #2051 from github/angelapwen/patch-release-script
Browse files Browse the repository at this point in the history
Fix type error in `Update release branch` workflow
  • Loading branch information
adityasharad committed Dec 21, 2023
2 parents 49812ec + 0be9290 commit 40cb08c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/release-branches/release-branches.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
with open(os.path.join(grandparent_dir, 'releases.ini')) as stream:
config.read_string('[default]\n' + stream.read())

OLDEST_SUPPORTED_MAJOR_VERSION = config['default']['OLDEST_SUPPORTED_MAJOR_VERSION']
OLDEST_SUPPORTED_MAJOR_VERSION = int(config['default']['OLDEST_SUPPORTED_MAJOR_VERSION'])

def main():

Expand Down

0 comments on commit 40cb08c

Please sign in to comment.