def _strip_tags_from_github_url()

in bicep/files-to-load/create_cc_param.py [0:0]


def _strip_tags_from_github_url(record):
    url = record["gitHubReleaseURL"]
    if "/tag/" in url:
        return url.replace("/tag", "")
    return url