Skip to content

Instantly share code, notes, and snippets.

View phil-blain's full-sized avatar

Philippe Blain phil-blain

View GitHub Profile
@phil-blain
phil-blain / move_issues.py
Last active January 14, 2025 18:02 — forked from adamcharnock/move_issues.py
Python script to move all GitLab issues from one project to another
#!/usr/bin/env python3
import os
import gitlab
GITLAB_API_TOKEN = os.environ['GITLAB_API_TOKEN']
def main():
print("Logging into gitlab and fetching a list of projects...")