npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@protocol.land/sync-github

v0.0.8

Published

Sync Protocol.Land repos to GitHub

Downloads

13

Readme

Protocol Land Sync GitHub

The Protocol Land to GitHub Sync tool streamlines the process of synchronizing your repositories from Protocol Land to GitHub, ensuring your projects are up-to-date across both platforms.

How to Use

To synchronize your Protocol Land repository with GitHub, you'll need to configure a GitHub Action in your GitHub repository and set the corresponding settings in your Protocol Land repository.

Setting Up: A Step-by-Step Guide

[!IMPORTANT]

If you're working with a private repository on Protocol Land, you'll need the Arweave wallet.

Setting Up on GitHub

  1. Starting Point:
  • If your repository exists only on Protocol Land, create a repository on GitHub.
  • If your repository exists only on GitHub, create a repository on Protocol Land.
  • If you don't have a repository on either platform, create a new repository on both Protocol Land and GitHub.
  1. Configuring GitHub Secrets:
  • Navigate to your GitHub repository's Settings > Secrets and variables > Actions > New Repository Secret.
  • (Optional) For syncing private repositories, add a new secret named WALLET with your Arweave wallet's JWK as the value.
  • You'll also need a Personal Access Token (PAT) with the appropriate permissions to sync from Protocol Land to GitHub. To create PAT, goto Fine-grained tokens to create a PAT. Set a token name, expiration, repository access (All repositories or Only select repositories (Recommended)) and permissions (Repository permissions -> Contents -> Read and write, Repository permissions -> Workflows -> Read and write). Finally, add a new secret named WORKFLOW_TOKEN with your PAT created as the value.
  1. Setting Up the GitHub Workflow:
  • Clone your Protocol Land or GitHub repository, then create a new file named protocol-land-github-sync.yml inside .github/workflows (make this folder if it doesn't exist).
  • Copy the provided workflow content into this file, commit, and push the changes to both GitHub and Protocol Land.
name: Protocol Land to GitHub Sync

on:
  workflow_dispatch:
    inputs:
      forcePush:
        description: "Force push"
        required: false
        default: "false"
      repoId:
        description: "Protocol Land Repo Id"
        required: true

permissions:
  contents: write

jobs:
  sync:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout Repository
        uses: actions/checkout@v3
      - name: Sync repo to GitHub
        run: npx @protocol.land/sync-github
        env:
          GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN || secrets.GITHUB_TOKEN }}
          WALLET: ${{ secrets.WALLET }}
          PL_REPO_ID: ${{ inputs.repoId }}
          FORCE_PUSH: ${{ inputs.forcePush }}
          GH_REPO_NAME: ${{ github.repository }}

Setting Up on Protocol Land

  1. Finalizing Setup:
  • Ensure your repository is pushed to both GitHub and Protocol Land to begin synchronization.
  1. Configuring Protocol Land Repository Settings:

image

Goto repository settings on Protocol Land. Then configure the following:

  • Switch: Click the switch to enable GitHub sync. You can disable it whenever GitHub Sync is not required. You can still use the Trigger Sync button for manual trigger of GitHub sync workflow.
  • Repository: Write your Github repository name with username. For example, labscommunity/protocol-land.
  • Branch: Write the branch name that contains the GitHub workflow file. For example, master.
  • Workflow name: Write your workflow file name. For example, protocol-land-github-sync.yml.
  • Personal Access Token (PAT): You'll also need a Personal Access Token (PAT) from GitHub with the appropriate permissions to trigger the GitHub workflow. This PAT is securely stored and encrypted with your wallet. To create PAT, goto Fine-grained tokens to create a PAT. Set a token name, expiration, repository access (All repositories or Only select repositories (Recommended)) and permissions (Repository permissions -> Actions -> Read and write).
  1. Synchronization Activation:
  • With everything set up, any new commits made to your Protocol Land repository, whether through the UI or CLI, will automatically trigger the GitHub workflow to sync your repository on GitHub.

By following these steps, you'll have successfully set up synchronization between your Protocol Land and GitHub repositories, enabling seamless updates and collaboration across platforms.