Harsh arora
Harsh arora

Reputation: 33

Is it possible to write an action for GitHub that will move some particular columns of a project to another project?

I need to create an automation action in GitHub that will automatically move a project's columns to another project.

Is there a way to achieve it?

Upvotes: 1

Views: 64

Answers (1)

GuiFalourd
GuiFalourd

Reputation: 23160

You can create an action using the GitHub API.

There is a full project section in the GitHub API with endpoints you could use to customize your action.

There is also already a GitHub automate project action on the GitHub marketplace, that can be used as reference (but that doesn't perform the same thing you want to implement).

Upvotes: 1

Related Questions