Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature Request] Add Support for Repository Project Cards #433

Closed
jcudit opened this issue Apr 20, 2020 · 0 comments · Fixed by #460
Closed

[Feature Request] Add Support for Repository Project Cards #433

jcudit opened this issue Apr 20, 2020 · 0 comments · Fixed by #460
Labels
Good first issue Good for newcomers New resource Status: Up for grabs Issues that are ready to be worked on by anyone Type: Feature New feature or request

Comments

@jcudit
Copy link
Contributor

jcudit commented Apr 20, 2020

👋 Please add the ability to create a project card on a project board.

The use case I am looking to address benefits mostly from creating, but other operations would be useful too (list, get, update, delete). I suggest moving a card be out of scope if it adds friction to an implementation.

Here is an example configuration to put a standard card into an instructional column for managed projects:

resource "github_repository_project" "project" {
  name       = "A Repository Project"
  repository = "${github_repository.example.name}"
  body       = "This is a repository project."
}

resource "github_project_column" "instructions" {
  project_id = "${github_repository_project.project.id}"
  name       = "Instructions"
}

resource "github_repository_project_card" "card" {
  note       = "Markdown project board instructions"
  column = "${github_project_column.instructions.name}"
}

/cc https://developer.github.com/v3/projects (docs)
/cc https://developer.github.com/v3/projects/cards (docs)
/cc https://github.com/terraform-providers/terraform-provider-github/pull/115 (prior art)

@jcudit jcudit added Type: Feature New feature or request Status: Up for grabs Issues that are ready to be worked on by anyone New resource Good first issue Good for newcomers labels Apr 20, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Good first issue Good for newcomers New resource Status: Up for grabs Issues that are ready to be worked on by anyone Type: Feature New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant