fix: prevent oidc on tokenless due to permissioning (#1724)

This commit is contained in:
Tom Hu
2024-12-17 11:37:41 -03:00
committed by GitHub
parent 47e0552fc4
commit 9b01a34191
5 changed files with 25 additions and 8 deletions

View File

@@ -4,8 +4,7 @@ import subprocess
def update_changelog():
with open('src/version', 'r') as f:
raw_version = f.read()
version = re.search('\"(.*)\"', raw_version).groups()[0]
version = f.read()
changelog = [f"## v{version}"]
changelog.append("### What\'s Changed")