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 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-gh-project-promoter

v0.6.1

Published

n8n community node for ghpp (GitHub Project Promoter)

Readme

n8n-nodes-gh-project-promoter

npm version License: MIT

Description

n8n-nodes-gh-project-promoter is an n8n community node that runs ghpp (GitHub Project Promoter) from within n8n workflows.

ghpp automates status transitions in GitHub Projects V2 by promoting items through a defined flow:

full   : inbox -> plan -> ready -> doing
simple : inbox -> doing

Workflow modes

| Mode | Transitions | Stale demote target | | ---------------- | --------------------------------------- | ------------------- | | full (default) | inbox -> plan -> ready -> doing | doing -> ready | | simple | inbox -> doing | doing -> inbox |

In simple mode, Promote Plan Enabled and Promote Ready Enabled are silently ignored, and stale doing items are demoted back to inbox instead of ready.

Full-mode phase constraints

| Phase | Transition | Constraint | | ----- | ------------------ | ---------------------------------------------------------------------------------------- | | Plan | inbox -> plan | Enabled by default; WIP cap on the Plan column (default: 3); existing plan items count | | Ready | plan -> ready | Opt-in; only items carrying the configured planned label (default: planned) | | Doing | ready -> doing | Skipped if the repository already has a doing item |

The inbox -> plan transition is enabled by default. Disable it with Promote Plan Enabled = false when you want to manage Plan entries manually.

The plan -> ready transition is opt-in (disabled by default). Enable it with Promote Ready Enabled and attach the configured Planned Label to items that are ready to move on.

Installation

Via n8n Community Nodes (recommended)

  1. Open Settings > Community Nodes in your n8n instance.
  2. Search for n8n-nodes-gh-project-promoter.
  3. Click Install.

Manual installation

cd ~/.n8n/custom
npm install n8n-nodes-gh-project-promoter

The postinstall script automatically downloads the appropriate ghpp binary from GitHub Releases. No additional setup is needed.

Prerequisites

  • n8n self-hosted instance (Docker recommended)
  • GitHub Personal Access Token with the following scopes:
    • repo
    • project
  • Supported platforms:
    • linux/amd64
    • linux/arm64
    • darwin/arm64

Credentials

  1. In n8n, go to Credentials > New Credential.
  2. Search for GHPP API.
  3. Enter your GitHub Personal Access Token in the Token field.

The credential is automatically verified against the GitHub API (GET /user) upon saving.

Required token scopes

| Scope | Purpose | | --------- | --------------------------------------- | | repo | Access repository data and issues | | project | Read and write GitHub Projects V2 items |

Node Parameters

Required

| Parameter | Type | Description | | ------------------ | ------ | ----------------------------------- | | Owner | string | GitHub owner (user or organization) | | Project Number | number | GitHub Project number (min: 1) |

Optional

| Parameter | Type | Default | Description | | ------------------------- | ------- | --------- | ---------------------------------------------------------------------------------------------------------------- | | Workflow | options | full | full runs the inbox -> plan -> ready -> doing flow. simple collapses it to inbox -> doing. | | Plan Limit | number | 3 | WIP cap for the Plan column. Existing items in Plan count against this limit; Ready/Doing do not. | | Promote Plan Enabled | boolean | true | Enable automatic inbox -> plan promotion (promote only, full mode). Disable to manage Plan entries manually. | | Promote Ready Enabled | boolean | false | Enable automatic plan -> ready promotion for items carrying the planned label (promote only, full mode) | | Planned Label | string | planned | Label name that triggers the plan -> ready promotion (shown when Promote Ready Enabled is on) |

Status Settings (collection)

Override the default status names to match your project board configuration.

| Parameter | Type | Default | CLI flag | | ---------------- | ------ | ------------- | ---------------- | | Status Inbox | string | Backlog | --status-inbox | | Status Plan | string | Plan | --status-plan | | Status Ready | string | Ready | --status-ready | | Status Doing | string | In progress | --status-doing |

Output

The node outputs the JSON result of ghpp promote. Structure:

{
	"summary": { "promoted": 4, "skipped": 2, "total": 6 },
	"phases": {
		"plan": {
			"summary": { "promoted": 3, "skipped": 1, "total": 4 },
			"results": [
				{
					"item": {
						"id": "PVTI_xxx",
						"title": "Issue title",
						"url": "https://github.com/owner/repo/issues/1",
						"status": "Backlog"
					},
					"action": "promoted",
					"to_status": "Plan"
				}
			]
		},
		"ready": {
			"summary": { "promoted": 0, "skipped": 0, "total": 0 },
			"results": []
		},
		"doing": {
			"summary": { "promoted": 1, "skipped": 1, "total": 2 },
			"results": [
				{
					"item": {
						"id": "PVTI_yyy",
						"title": "Another issue",
						"url": "https://github.com/owner/repo/issues/2",
						"status": "Ready"
					},
					"action": "skipped",
					"reason": "repository already has doing issue"
				}
			]
		}
	}
}

Guarantees:

  • phases.plan, phases.ready, and phases.doing are always present (even when empty).
  • phases.plan results are empty when Promote Plan Enabled is off.
  • phases.ready results are empty unless Promote Ready Enabled is on.
  • results is [] when there are no items (never null).
  • action is either "promoted" or "skipped".
  • "promoted" includes to_status; "skipped" includes reason.

If the output cannot be parsed as JSON, the node falls back to { "raw": "<stdout>" }.

Example Workflow

A typical setup uses a Cron trigger to run ghpp on a schedule:

[Schedule Trigger] -> [GHPP] -> [Slack / Email / etc.]
  1. Schedule Trigger -- fires at your preferred interval (e.g., every hour).
  2. GHPP -- runs ghpp promote with your project settings.
  3. Notification -- sends the promotion summary to Slack, email, or any other service.

Compatibility

| Requirement | Version | | ----------- | --------- | | n8n | >= 1.0.0 | | Node.js | >= 18.0.0 |

Tested platforms:

  • linux/amd64
  • linux/arm64
  • darwin/arm64

License

MIT

The ghpp binary is distributed under its own license. See douhashi/ghpp for details.

Resources