4origin = 
"https://git.km3net.de" 
    6private_token = os.getenv(
"PRIVATE_TOKEN")
 
    7gl = gitlab.Gitlab(origin, private_token, api_version=
'4')
 
   10projects_to_notificate = [
 
   20for project_id 
in projects_to_notificate:
 
   21    project = gl.projects.get(project_id, lazy=
True)
 
   23    issue = project.issues.create({
 
   25        'New KM3NeT Dataformat Release {}'.format(os.getenv(
"CI_COMMIT_TAG")),
 
   27        "There is a new version of the KM3NeT Dataformat available, " 
   29        "\n\nhttps://git.km3net.de/common/km3net-dataformat/-/tags",
 
   31    issue.labels = [
'io', 
'todo']