Questions tagged [github-issues]

Tag used for GitHub Issues, an issue tracker provided by GitHub

GitHub Issues is an issue tracker provided by GitHub, supporting features such as labels, project milestones, assignees, inter-repository references, and more. This tag should be used with regards to this issue tracker.

100 questions
2
votes
2 answers

How do I require a linked issue in a github pull request before allowing the PR to be merged/closed

Is there a way to force an issue to be linked to a PR before allowing the user to merge/close the PR? I was able to set up all of the other checks in the branch protection rule, but I cannot find a way to check that there is at least 1 linked…
M.Ob
  • 1,785
  • 14
  • 27
2
votes
2 answers

How to add label to an issue on GitHub

I have recently created a new issue on my repository on GitHub, now I want to add a label to it, the issue is actually a bug. I don't know how to do it. I am the owner of that repository.
Paras Gupta
  • 264
  • 3
  • 11
2
votes
1 answer

I am not able to filter issue via github search api

I am a collaborator for a private repository and able to edit, push code, create issues, close issues, etc on it. I am trying to create a report of issues open and closed on the repository. To achieve this I needed to get issues based on time…
nak
  • 846
  • 2
  • 10
  • 26
2
votes
1 answer

Should I post an issue for variation in parameters

The parameter for StatefulBuilder's builder function are different in the website flutter.dev and the documentation pop-up window in android studio or vs code. In official website documentation it says that the second parameter is a StateSetter…
ldev
  • 103
  • 1
  • 6
2
votes
0 answers

ZenHub API requests using Javascript

I am currently using ZenHub enterprise and want to know how can I get GitHub issues with Zenhub details in there? I am already able to fetch the issues using git API, however that doesn't have parameters like the release, pipeline, epics and…
vc2310
  • 131
  • 1
  • 1
  • 7
2
votes
1 answer

What is purpose of placing pull request inside project board on Github?

I recently discovered that you can create Milestones and Project Boards on Github repositories. With project boards, you can place issues and pull requests and move them around the boards (Kanban). But what is the purpose of having pull request…
Dinko Pehar
  • 5,454
  • 4
  • 23
  • 57
2
votes
1 answer

Is there a way to add due date for Github like Gitlab

Is there a way to add due date for Github like Gitlab? I know github has milestone but I want due date for each issues. Do you have any recommended tools like Jira or Asana.
Masahiro Aoki
  • 815
  • 12
  • 22
2
votes
1 answer

Any way to save an unpublished (e.g. draft) issue?

Under various circumstances it may make sense to delay publishing an issue. E.g. if waiting some days/weeks/months for a dependency to update or some other concern. Is there a way (within the github platform) to save a draft issue? Note: Gists…
stevec
  • 41,291
  • 27
  • 223
  • 311
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

ModuleNotFoundError: No module named 'sklearn.ensemble._bagging'

ModuleNotFoundError: No module named 'sklearn.ensemble._bagging' Which version is suitable of scikit learn for the above error? I am facing this issue when I am using the python 3.7 version. And I can't update the version.
1
vote
1 answer

Can I connect a Github Projects task to a commit without converting it to an issue?

I am trying to use github Projects to manage my dev, but I can't seem to find info anywhere on how to associate a task (NOT an issue) with a commit. Is there a way to do this similar to how "fix #xxx" line will link to an issue or do I have to…
1
vote
1 answer

List assigned issues of a GitHub project (assigned to anyone, not just me)

In a GitHub project, how to list all issues that are assigned? I mean assigned to anyone, not just issues assigned to me. Preferably from the oldest to the newest. Preferably as a web interface so that I can open the hyperlinks to unassign if…
Nicolas Raoul
  • 58,567
  • 58
  • 222
  • 373
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
vote
1 answer

copy issues on fork repo to original repo

I want to see the issues I have made on forked repo on the original repo. I did some experiment: I made some issues on my fork repo and was trying to see them on my original repo by merging through pull & request. However, all I did was just merging…
seunghyub
  • 9
  • 1
1
vote
0 answers

Is it possible to fetch the issue/PR templates of a Github repository, via REST API?

I wanted to pre-fill some Github issue/PR creation forms, by fetching the templates from the repository via REST API. Is this possible? I've searched in the documentation, but I couldn't find an API for this purpose.
Marcus
  • 5,104
  • 2
  • 28
  • 24