View as Markdown
GitHub icon

GitHub ACTION

Update Project (V2) Item Status

Update the status of an item in the selected Project (V2). See the documentation
  • Action
  • Writes data
  • Destructive
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's GitHub account once, then configure and run Update Project (V2) Item Status from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "github-update-project-v2-item-status",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    github: { authProvisionId: "apn_xxxxxxx" },
    org: "Organization",
    repo: "Organization Repository",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Update Project (V2) Item Status inputs
Property Type Description
org Organization string
The name of the GitHub organization (not case sensitive).
Required Dynamic
repo Organization Repository string
The repository in a organization
Optional Dynamic
project Project V2 integer
The project (V2) in a repository
Required Dynamic
item Project (V2) Item string
The project item to update
Required Dynamic
status Item Status string
The status to set for the item
Required Dynamic
moveToTop Move to Top boolean
If true, moves the item to the top of the column instead of the bottom.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
github-update-project-v2-item-status
Version
0.0.13
App
GitHub
Authentication
OAuth
Read-only
No
Destructive
Yes
Open world
Yes