Migrating Azure Devops Activity to GitHub šŸ”„ļø — Stable…
    Neura MarketNeura Market/Stable Diffusion
    ChatGPTChatGPTClaudeClaudeGeminiGeminiCursorCursorGrokGrokPerplexityPerplexityStable DiffusionStable Diffusion
    DeepSeekDeepSeekCoPilotCoPilotMidjourneyMidjourney
    View All Directories
    OverviewPromptsBlogVideosGuidesCoursesCommunityModelsLoRAsComfyUI WorkflowsTrending
    Stable DiffusionBlogMigrating Azure Devops Activity to GitHub šŸ”„ļø
    Back to Blog
    Migrating Azure Devops Activity to GitHub šŸ”„ļø
    azure

    Migrating Azure Devops Activity to GitHub šŸ”„ļø

    Ramy Gamal May 1, 2026
    0 views

    GitHub isn’t just a place to store code anymore. For many developers, it’s a living portfolio, a...

    GitHub isn’t just a place to store code anymore. For many developers, it’s a living portfolio, a snapshot of what they’re building, exploring, and learning.

    Though, my GitHub profile didn’t reflect that at all. This happened when I joined a company that don't use GitHub for managing the codebase.

    Most of my day-to-day work happens in a private codebase hosted on Azure DevOps. So even though I’m actively coding, shipping, and solving problems, my GitHub looked… inactive. Almost like I stopped coding altogether.

    The Idea

    One night, I decided to fix this.

    Since I genuinely enjoy building automation scripts, I thought: Why not automatically sync my activity from azure DevOps into my GitHub account?

    So I built a small script that:

    1. Pulls my commits from Azure DevOps (where I’m the author)
    2. Replays them into a private GitHub repository
    3. Runs automatically on a daily schedule

    How It Works

    The setup is pretty straightforward:

    • Uses Azure DevOps APIs to fetch commits
    • Filters commits by author
    • Pushes them into GitHub as new commits (A private repository is recommended to contain your activity)
    • Runs daily using GitHub Actions.

    Now, my GitHub profile reflects actual activity again without changing how or where I work. 😁

    The script was originally built for my own use, but it is open-source in case it’s useful to others.

    If you’re working across different platforms and want a unified presence, this might help or at least spark an idea.

    šŸ‘‰ Check it out: {% embed https://github.com/Raamyy/azuredevops-commits-migrator %}

    Main function

    async function main() {
      if(AZURE_NAME == "") {
        console.error("AZURE_NAME is not set. Please add it to the github secrets with your Azure username. exiting...");
        return;
      }
      let COMMITS = [];
      let projects = await getProjects();
      for (let project of projects) {
        let repositories = await getRepositories(project);
        for (let repo of repositories) {
          let commits = await getCommits(project, repo.name, AZURE_NAME, repo.defaultBranch);
          COMMITS = COMMITS.concat(commits);
        }
      }
      COMMITS = COMMITS.sort(function (a, b) {
        return new Date(a.creationDate) - new Date(b.creationDate);
      });
      console.log(`got toal of ${COMMITS.length} commits`);
      generateGitCommits(COMMITS)
    }
    

    If you’re interested in extending it or making it more generic, contributions are welcome. And if you have questions, feel free to reach out.

    Now I joined a bit bigger company that still I am not sure of it's policies regarding similar, so my GitHub is back dead again 😭

    Do you care about the activity graph, or do you prefer to keep work and personal strictly separate?"

    Tags

    azuregithubautomationgithubactions

    Comments

    More Blog

    View all
    Context bankruptcy: The case for strategic forgetting for AI Agentsai

    Context bankruptcy: The case for strategic forgetting for AI Agents

    Most of us have seen a coding agent fail to complete a task we know it can do. We just don't...

    J
    James O'Reilly
    Parallel Compliance Engine: Drive-to-Sheets Multi-Agent Orchestrationgooglecloud

    Parallel Compliance Engine: Drive-to-Sheets Multi-Agent Orchestration

    When building Generative AI applications, developers often encounter a massive bottleneck: sequential...

    A
    Aryan Irani
    Is It Ethical to Post and Ask About Circuits on Dev.to?discuss

    Is It Ethical to Post and Ask About Circuits on Dev.to?

    I’ve been thinking about sharing some electronic circuit posts on Dev.to — small circuits, DIY...

    C
    codebunny20
    The One-Click Exporter: AI Studio Antigravity, Probed to Its Limitsagents

    The One-Click Exporter: AI Studio Antigravity, Probed to Its Limits

    What nobody tells you about exporting your multi-agent prototype to a local workspace. Every...

    L
    leslysandra
    Guarding the till while autonomous data agents do the diggingagenticarchitect

    Guarding the till while autonomous data agents do the digging

    Autonomous agents are genuinely good at answering messy business questions. Give one an LLM and a set...

    S
    Sireesha Pulipati
    Return on Attention: Why AI Code Reviews Are Wearing Us Outai

    Return on Attention: Why AI Code Reviews Are Wearing Us Out

    PR volume went up, ticket quality didn't, and the gap got filled with LLMs on both sides of the review: bots reviewing, bots replying, bots occasionally arguing with bots about priorities that only existed in a teammate's head. Our CEO named the actual problem, and it's bigger than code review.

    C
    christine

    Stay up to date

    Get the latest Stable Diffusion prompts, rules, and resources delivered to your inbox weekly.

    Neura Market LogoNeura Market

    Discover the best AI prompts, plugins, and resources for Stable Diffusion and more.

    Content Types

    • Rules
    • Prompts
    • MCPs
    • Agents
    • Guides

    Platforms

    • ChatGPT Directory
    • Claude Directory
    • Gemini Directory
    • Cursor Directory
    • Grok Directory
    • Perplexity Directory
    • DeepSeek Directory
    • CoPilot Directory
    • Stable Diffusion Directory
    • Midjourney Directory
    • All Directories

    Resources

    • Blog
    • Documentation
    • Help Center
    • Marketplace

    Legal

    • Privacy Policy
    • Terms of Service

    Ā© 2026 Neura Market. All rights reserved.

    |

    Not affiliated with any AI platform vendors.

    Ready-made automations for this

    Workflows from the Neura Market marketplace related to this Stable Diffusion resource

    • Personal Portfolio CV RAG Chatbot with Conversation Store & Email Summaryn8n Ā· $24.99 Ā· Related topic
    • Automated US Stock Portfolio Analysis with Telegram & AI Reportsn8n Ā· $24.99 Ā· Related topic
    • Personalized Stock Portfolio Analysis with Grok-4 & Perplexityn8n Ā· $24.99 Ā· Related topic
    • Daily AI Stock Portfolio Analyzer with Perplexity, GPT & Sheetsn8n Ā· $24.99 Ā· Related topic
    Browse all workflows