Categorygithub.com/furmanp/gitlab-activity-importer

# README

Go Report Card Latest Release

Git activity Importer (Gitlab -> Github)

A tool to transfer your GitLab commit history to GitHub, reflecting your GitLab activity on GitHub’s contribution graph.

Table of Contents

Overview

This tool fetches your commit history from private GitLab repositories and imports it into a specified GitHub repository, creating a visual representation of your activity on GitHub’s contribution graph. It can be configured for automated daily imports or manual runs.

Features

  • Automated Daily Imports: Syncs your GitLab activity with GitHub automatically each day.
  • Manual Imports: Allows on-demand updates.
  • Secure Data Handling: Requires minimal permissions and uses GitHub repository secrets for configuration.

Setup

1. Automatic Imports (Recommended)

This approach will automatically keep your activity up to date. The program is being run daily at midnight UTC. It imports your latest commits and automatically pushes them to specified GitHub repository.

To do that follow these steps:

  1. Fork this repository to your GitHub account.
  2. Create an empty repository in your GitHub profile where the commits will be pushed.
  3. Configure repository secrets in your forked repository:
    • Go to your forked repository settings.

    • Under Security, navigate to Secrets and variables > Actions. Repository Secrets Configuration

    • Add the following secrets:

      Secret NameDescription
      BASE_URLURL of your GitLab instance (e.g., https://gitlab.com)
      COMMITER_EMAILEmail associated with your GitHub profile
      COMMITER_NAMEYour full name as it appears on GitHub
      GITLAB_TOKENGitLab personal access token (read permissions only)
      ORIGIN_TOKENGitHub personal access token (with write permissions for auto-push)
      ORIGIN_REPO_URLHTTPS URL of your GitHub repository (ensure it has a .git extension)

Once these variables are saved in your Repository secrets, your commits will be automatically updated every day.

2. Manual Imports

If you prefer to run the importer manually:

  1. Download the latest release of the tool.
  2. Set up the same environment variables on your local machine:
export BASE_URL=https://gitlab.com
export [email protected]
...
  1. Run the tool locally whenever you want to sync your activity.

Configuration

This project uses GitHub Actions to automate builds and daily synchronization:

  • GitHub Actions Workflow: The .github/workflows/schedule.yml defines the automation steps for building and running the tool.
  • Secrets Configuration: The secrets allow secure storage and retrieval of required tokens and URLs during automation.

Important Notes:

  • GitLab permissions: The tool only requires read access to your GitLab repositories.
  • GitHub permissions: Your GitHub token must have write access to the destination repository for automatic pushes.

License

This project is licensed under the MIT License, which allows for free, unrestricted use, copying, modification, and distribution with attribution.

# Packages

No description provided by the author
No description provided by the author