Questions tagged [github-projects]

52 questions
17
votes
2 answers

How to transfer a github Projects from one repository to another

I am curious if you can move a github 'Project' from one repository to another. Should be more specific. Github has a 'Project' feature that allows you to create a simple kanban board. I would like to move this project from repo-a to repo-b.…
Buster
  • 685
  • 1
  • 5
  • 28
11
votes
2 answers

How do I assign multiple issues to a project in github

I cannot find an option for me to bulk select multiple issues and assign them to an project. I can only bulk assign labels and other stuff.
ycshao
  • 1,768
  • 4
  • 18
  • 32
4
votes
1 answer

GitHub GraphQL API Filter on custom text field in Project V2

We are using GitHub Projects (Beta). I created a custom text field called oma-project. I want to use the API to filter on this field, e.g., oma-project: "P0001". This should return all issues with this value in the custom field. Looking at the…
4
votes
2 answers

How to add custom created column in github project boards's progress bar?

I created a project board in GitHub using default Kanaban. I've added my own column, but it isn't reflected in the project progress bar. Only To-Do, In-Progress & Done are reflected and it is bugging me out. Is there a way to reflect the new columns…
sampath.xyz
  • 150
  • 1
  • 7
3
votes
1 answer

Automatically add Github Issues to Github Project

My github repository contains an ISSUE_TEMPLATE that helps users to create issues. Also, I have a backlog where I'd like to track issues and automate that they appear as soon as new issues have been created. The only missing link is that new…
Casper Dijkstra
  • 1,615
  • 10
  • 37
3
votes
2 answers

How can I see that an issue has been moved between columns in a project using the GitHub GraphQL API?

I'd like to determine when a card has moved from one column to another in a GitHub Project Board using the GitHub GraphQL API. I can list all issues in a project board (for example, Twitter Bootstrap) using a query like this one: { …
danvk
  • 15,863
  • 5
  • 72
  • 116
2
votes
2 answers

Is it possible to create a user project (V2) with a github app?

I am trying to create a projectV2 with Github's Graphql API, through a Github App, because they have deprecated their classical projects, and if you try to create a project in a repository that doesn't have one previously associated Github doesn't…
2
votes
1 answer

How do I trigger a Github Action on project card movement?

I need a Github action which closes an issue when that issue is moved to a "Done" column on a Github Project. My issue is that the project_card trigger only works on "classic" projects. Github specifies this in their documentation for the…
zeepk
  • 108
  • 6
2
votes
1 answer

How to import issues from repo or organization into github project?

I want to use Github projects to triage issues from a repo. Problem is how to load all issues from repo into github project that I have created? I have seen couple of videos like this one but everyone is creating issues manually in Project or adding…
Dhaval D
  • 1,087
  • 2
  • 14
  • 25
2
votes
0 answers

How to set all newly created Github projects board tasks to become issues by default

Every new task I create in the Github projects board must be manually converted to an issue by me. I couldn't find any setting for what seems a most obvious thing, so is there any method of making that happen? The following screenshot is what I want…
laszlo
  • 494
  • 4
  • 18
2
votes
1 answer

Where to find GitHub project boards I have been added to as collaborator?

I have created a project board on Github and added another user as a collaborator to this private project. He can't find the project under his own project list but only if I give him the direct link.
Shawn-Ross
  • 137
  • 2
  • 12
1
vote
0 answers

GraphQL query to get status from a new github project for an issue

With classic github projects I used to get the status of the issue along with other issue information using a single request: { search(query: "is:open is:issue assignee:@me archived:false", type: ISSUE, first: 30) { issueCount edges { …
streetturtle
  • 5,472
  • 2
  • 25
  • 43
1
vote
0 answers

Copy GitHub project including items

GitHub provides a project board called GitHub Projects. I want to move a project from my personal account to an organization account including any items (cards/issues/PRs) that are part of the project. As far as I have seen, GitHub Projects doesn't…
dan1st
  • 12,568
  • 8
  • 34
  • 67
1
vote
2 answers

Why is this String not passed properly in Github's GraphQL API?

I'm pretty new to GraphQL and Github Actions, here I'm trying to update an item in my GitHub Project (V2) using the Github CLI and the GraphQL API within the Github Action workflow file, I'm having trouble passing the $bugOptionId to the query…
PecorinoDev
  • 136
  • 1
  • 7
1
vote
1 answer

GitHub Action move issue on project when issue is linked to a Pull Request

I am trying to automate my project boards. I would like an action to trigger when someone opens a Pull Request and links it to a issue on the board, then the issue would be moved to "In Review". I imagine once I trigger by a pull_request, this…
1
2 3 4