Questions tagged [pull-request]

Pull requests are made when a developer forks a project, makes changes, and then wants those changes to be included in the main project again. These were made popular by Github and Bitbucket.

2166 questions
0
votes
1 answer

Github-Actions: link pull request to issue

I'm quite a rookie with GitHub Actions so this might be a stupid question: Is there a way to link pull requests with issues (in the UI linked PRs are shown under Development) in Github Actions using Github CLI or octokit/rest.js via…
0
votes
0 answers

Veracode scan for changed files in Pull request

I need to enable veracode for my application, so just wanted to know can we run the veracode for every pull request/merge request only for modified files? or scanning only once in a day on entire code is sufficient? There are 20 developers are…
Naresh Ede
  • 123
  • 2
  • 12
0
votes
0 answers

Running pnpm lint-fix on a nextjs repository

I have a pull request in with the nextjs project here: https://github.com/vercel/next.js/pull/45238 To get it accepted, I need to run pnpm lint-fix on the code. I am utterly unfamiliar with pnpm and Python, but I got the latter installed correctly…
Nick Hodges
  • 16,902
  • 11
  • 68
  • 130
0
votes
0 answers

Git Pull Request merging changes on both branches

I have 4 branches (dev, main, example1, example2) and I am trying to create a pull request to pull example1 into main. What is happening? First I created a pull request to pull example2 into dev then I created a pull request to pull example1 into…
0
votes
0 answers

List associated Issues / Pull Requests in Pull Request description (github action variables)

We merge everything to develop. Once a week we merge everything from develop to master. This weekly master merge contains 50+ commits from 10+ issues with 10+ pull requests. In our weekly master merge we want a description with all the related…
0
votes
0 answers

How to get a pull request accepted on the google-ar/arcore-android-sdk 's Github?

I want to propose more developped features to this repository google-ar/arcore-android-sdk. What should be the presentation of a pull request, or any is accepted?
Kokottc
  • 101
  • 1
  • 7
0
votes
0 answers

Github - Resolve Conflcits UI shows conflict but there isn't

Github UI shows conflict even though when I merge main into feature-branch locally there is no conflict. <<<<<<< feature-branch print('Hello') ======= >>>>>>> main I solve the issue by manually merging feature-branch into main and then pushing to…
m0lly
  • 1
  • 1
0
votes
3 answers

Why "merge main" first to resolve the Pull Request conflict

I found the way to solve Pull Request conflict is not very intuitive. Could someone give some further explanation or reasoning? Scenario: Two developers opened two PR at the same time. One is PR1 from branch feature-1 and the other is PR2 from…
CX_Lin
  • 23
  • 4
0
votes
1 answer

Managing feature branch versions with npm for component packages

We have a React App which uses some components written by us and published to our internal npm repository. Our code is maintained in Bitbucket Data Center, the build is done with Bamboo and the npm repository is hosted in JFrog Artifactory. We work…
0
votes
0 answers

Auto approve Pull Request Server on Azure DevOps

I am writing a server on express js in oder to auto approve pull requests under specific circumstances on Azure DevOps. Here is part of my code : let connection = new azdev.WebApi(orgUrl, authHandler); connection.getGitApi().then(gitApi => { …
0
votes
0 answers

Trigger azure build pipeline from pull request tag

I would like to trigger a specific build pipeline based on a tag value from a pull request for a git repo hosted on Azure. Currently, any tags on the PR once merged to master are not applied to the master branch after merging. As shown above,…
0
votes
0 answers

List associated issues in Pull Request

In our Github organization, we merge everything to develop. Once a week we merge everything from develop to master. We want to have a list of all issues in the PR description based on the commits, which are linked to the issues (with #number of…
0
votes
1 answer

Coveralls.io links showing coverage, disappeared from github pull requests, starting 12/01/2022

Our coveralls links disappeared starting 12/01/2022 from github pull requests & pushes. It was working before. You can see the detailed summary here https://github.com/lemurheavy/coveralls-public/issues/1683. Do others face similar issues? Any…
0
votes
1 answer

Is there a way to run workflow when PR review is requested from a specific user

Well i think the title itself is pretty self explanatory. Right now i can see this in github docs. on: pull_request: types: [review_requested] jobs: specific_review_requested: runs-on: ubuntu-latest if: ${{…
0
votes
0 answers

Is it possible to get a list of issues based on the commits of a PR using Github Actions

In our Github organization, we merge everything to "develop". Once a week or bi-weekly we merge everything from "develop" to "master". We want to have a list of all the issues associated with the PR in the PR description based on the commits, which…