Home > Back-end >  How to rebuild PR github without making a new commit that checks failed due to network
How to rebuild PR github without making a new commit that checks failed due to network

Time:04-27

How to rebuild PR that checks failed due to network issue.

I want rebuild PR without making any new commit.

build failed screenshot is attached

CodePudding user response:

I guess you are using Github Actions and the thing you want to achieve here is re-running a custom workflow.

Refer to the docs https://docs.github.com/en/actions/managing-workflow-runs/re-running-workflows-and-jobs

CodePudding user response:

Normally the Pull Request problem happens for, the files or changes present in your remote branch is not available in your local, or the Github branch.

So, the Github Action or any other build system is failing to Create successful Pull Requests.

  1. Add remote repository to your code repository.

  2. git fetch <remote-repository

  3. git pull

Now, push to the origin.

  • Related