Reputation: 33
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
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