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
0 answers

Why my deploy did no complete; local git pushs will not arrive to dev and pull requestes will not arrive to live

I'm pushing my local changes to master branch and then changes should be available to see in dev and I also tried to create pull request (master -> live branch) as well in bitbucket, however changes did not reach live. I'm not receiving any error…
0
votes
0 answers

Is there an app to create automated changelogs based on Github Pull Request descriptions?

I want to create a changelog that pulls certain info from each Pull Request, which will have a description template for the user to fill out the info. I found github-changelog-generator and a bunch of alternatives but seems like most of them are…
bnykpp
  • 55
  • 1
  • 5
0
votes
1 answer

how to copy vscode folder without github repository

How to copy vocode folder without GitHub repository? id like to better my code so i copied the project's folder but when i want to commit it to GitHub its automatically connected to the original project's repository. how do i clone/duplicate a vs…
0
votes
1 answer

Switch github PR from master to branch

I created a pull request (PR) for a git repository I forked on github. I made the mistake of making the changes and creating the PR from the master branch (the repo is still using the old naming convention, I know the new convention is to call it…
Davide
  • 17,098
  • 11
  • 52
  • 68
0
votes
1 answer

XCode Cloud PR approval

Currently, we trying to integrate CI/CD into our app. I can setup a workflow like this: PR opened -> TestFlight But we want to use it like this: PR opened -> Code Review PR Approval -> TestFlight Is there any way to catch the Pull Request Approval…
Ruben Nahatakyan
  • 372
  • 3
  • 13
0
votes
0 answers

Run GitHub Action to allow pull requests when only 1 subfolder is changed

I have a following folder structure for my group java project: -com -example -name -folder1 -folder1-1 -folderX -folder1-2 -folderX -folder1-3 -folderX -folder2 …
0
votes
2 answers

Pull requests in Android Studio: Can't load data from GitHub. [Could not resolve to a Repository with the name xxx]

I am having this issue in Android Studio while trying to open Pull requests in the IDE. I have two accounts logged in for github in my Android studio (personal and work) Can't load data from GitHub. [Could not resolve to a Repository with the name…
Pooja Singh
  • 726
  • 1
  • 7
  • 17
0
votes
0 answers

How to lint the message of a pull request merge commit?

I've set up a GitHub Actions workflow that uses commitlint to lint messages for all commits of a pull request, but the problem is that the merge commit is not considered. This action is, in short, as simple as the following: on:…
0
votes
0 answers

How to block merge request on GitHub if a build fails on Jenkins

The idea is that I want to block pull requests on GitHub if a build fails on Jenkins so that potential bad code doesn't get merged I had originally found a plugin called Pipeline GitHub Notify Step:…
0
votes
1 answer

Deleting draft PR's

I know github generally has a rule where PR's and stuff can be closed, but never deleted to preserve history, unless there is something very necessary about it (such as private keys being included in the PR by accident, etc.). I was wondering,…
Jason Chan
  • 193
  • 1
  • 3
  • 11
0
votes
3 answers

how to sync my cloned repository with the original remote repo?

I am trying to clone a repository from another git user (name him Bob). After I made some changes to the forked repository, I wish to make a pull request and allow Bob, the original git user from whom I forked the repository from, to accept and…
pylos
  • 102
  • 8
0
votes
0 answers

Add diff and files changed to github pull request card

I'd like to see files and lines changed in a pull request: in the pull request's subtext on the pull requests page for my repository: Is it possible to configure Github to show this?
CALICAWESOME
  • 35
  • 1
  • 7
0
votes
1 answer

Get list of files changed by GitHub Pull Request using git

As a part of PR validation, I need to detect what files have changed in PRs created from forked repositories to my main repository. Currently, I am using this code: - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Get changed files …
Grzegorz Krukowski
  • 18,081
  • 5
  • 50
  • 71
0
votes
0 answers

github's post pulls api throwing invalid head error for a forked head in same org

repo1: https://github.com/ORG_SPACE/MAIN_REPO repo2(forked from repo1 in same workspace): https://github.com/ORG_SPACE/FORKED_REPO feature branch created in forked repo: https://github.com/ORG_SPACE/FORKED_REPO/tree/FEATURE_BRANCH Authorization…
maker
  • 125
  • 1
  • 1
  • 6
0
votes
1 answer

How to trigger a github action build from the pull request page?

I have configured a github actions build for pull requests. Sometimes the build fails because of a time out when trying to solve some dependencies from a self hosted repository. So far what I have to do to run the build again is to make a commit…
Diego Palomar
  • 6,958
  • 2
  • 31
  • 42
1 2 3
99
100