Home > database >  Is it possible to write an action for GitHub that will move some particular columns of a project to
Is it possible to write an action for GitHub that will move some particular columns of a project to

Time:11-28

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?

CodePudding user response:

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).

  • Related