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
1
vote
2 answers

github issue feedback like on microsoft docs

When you go to https://learn.microsoft.com/en-gb/aspnet/core/getting-started/?view=aspnetcore-3.1&tabs=macos for example, or any other microsoft docs, and the end of the page there is github feedback - you can open an issue directly on the site or…
0
votes
0 answers

How to download GitHub issue attachment from command line?

I'm trying to download files that were attached to issues for a repository within my organization from command line. Specifically, I'm trying to download using R, but command line will do. I have the URL, which takes the form…
0
votes
0 answers

Execution failed for task ':sound_stream:compileDebugKotlin'

Execution failed for task ':sound_stream:compileDebugKotlin'. A failure occurred while executing org.jetbrains.kotlin.compilerRunner.GradleCompilerRunnerWithWorkers$GradleKotlinCompilerWorkAction Compilation error. See log for more details What…
0
votes
0 answers

Is there a Github API to list issues with logical OR of labels?

The API call to list issues by labels by default return issues with all mentioned labels included, ie. logical AND of labels. For example: curl https://api.github.com/orgs/ORG/issues?labels=bug,ui,@high return issues with ALL three labels, bug, ui…
0
votes
1 answer

I commented on someone else's GitHub Issue. How can I find it again?

Just the other day, on some random GitHub Issue, I left a comment. Now I want to find my comment, but unlike Facebook's Activity Log, since the Issue was not created by me, nor do I own the repository, well... the only way to find that activity of…
Dan Jacobson
  • 490
  • 3
  • 14
0
votes
0 answers

Command gh issue list to export issues to CSV file

this command gh issue list --limit 10000 --state all --json number,title,assignees,state,labels,url |^ jq -r '["number","title","assignees","state","labels","url"],^ (.[] | [.number, .title,^ (.assignees | if length==0 then…
Roberto
  • 11
  • 1
0
votes
1 answer

How to load data from github graphql using since like rest API

I have written a pipeline to load issues from GitHub to big query; I want to make it incremental, for example, load only the data from the last run to the present run; I tweaked the pipeline code to pass since arg, but I don't know if the graphql…
0
votes
0 answers

Add an image as comment to an issue in GitHub programmatically

I am migrating a repo from Bitbucket to GitHub and I am using the GH API. According to the documentation: https://docs.github.com/en/rest/issues/comments?apiVersion=2022-11-28#update-an-issue-comment you can easily add a comment in text. I don't see…
JFerro
  • 3,203
  • 7
  • 35
  • 88
0
votes
1 answer

React Native Text component bug on Android with numberOfLines & textAlign properties

I have Text component in react-native 0.71.3 with numberOfLines > 1 & textAlign = 'center' properties: On IOS it…
jocoders
  • 1,594
  • 2
  • 19
  • 54
0
votes
0 answers

How to add condition for removeLabel in github actions?

Using actions/importer-issue-ops Template and using multiple Runners with matrix strategy (ubuntu-latest,selfhosted-runner) In the Cleanup step using below yml script to removeLabel for an issue. - uses: actions/github-script@v6 if:…
Naresh
  • 1
  • 1
0
votes
0 answers

cancelDiscovery() automatically called by flutter_bluetooth_serial library

I am developing a flutter application to list and connect my phone to other devices within the app. So I am using a flutter_bluetooth_serial package. I implemented almost the same the code from the documentation but after calling startDiscovery()…
Programmerz
  • 159
  • 7
0
votes
2 answers

GitHub Issues: how to reference issues from different repos in a tasklist

Tasklists in GitHub Issues allow to automatically reference others issues in the same repo using the format #ISSUE_NUMBER. This reference automatically shows the name of the Issue and it state. While there exists a similar format (repo#ISSUE_NUMBER)…
FedFranz
  • 529
  • 1
  • 5
  • 15
0
votes
0 answers

How to export GitHub issues into a Word (docx) document?

The long and stupid way is listed below, but hoping that someone has a way quicker and nicer solution. (Didn't have time to come up with a proper Node or Deno solution, so I spent better part of the day on this abomination.quote) "Install" GitHub…
toraritte
  • 6,300
  • 3
  • 46
  • 67
0
votes
0 answers

GitHub Issue Template lookup fields

We are trying to create our custom issue forms with yaml and would like to include a field that allow us to link an issue with other issues. Our idea is to have a field like the asignee ones where clicking on the gear icon you can select option from…
delucaezequiel
  • 483
  • 2
  • 9
  • 26
0
votes
0 answers

Unable to read variable from different step in github actions

I wish to read a variable value_deploy_path from another step but it simply prints nothing. name: CICD_develop on: push: branches: - "*" jobs: SETVARS: runs-on: 'windows-latest' steps: - name: Get env data from…
Ashar
  • 2,942
  • 10
  • 58
  • 122