Merging a Pull Request
After the pull request is reviewed and approved, it can be merged provided all the configured merge validations are met that are configured in the PR settings.
To merge a pull request, run the
execute-merge-pull-request
command:oci devops pull-request execute-merge-pull-request --commit-message --merge-strategy --pull-request-id
To validate a merge pull request, run the
validate-merge-pull-request
command:oci devops pull-request validate-merge-pull-request --pull-request-id
To merge a pull request, use the
MergePullRequest
operation.
Resolving Merge Conflicts
Resolving a merge conflict in a pull request (PR) involves identifying the issues that caused the conflict, addressing the conflict locally, and then pushing the change remotely. Possible issues include error conditions encountered during the PR build and conflicting source files.
To check for error conditions from a failed build:
- In the PR with the merge conflict, select Merge checks.
- Select Failed build.
- Select Unit tests.
To check for conflicting source files:
- In the PR with the merge conflict, under Resources, select Differences.
Each affected file is indicated by the label Conflict.
After you identify the issue, address the conflict in the local repository and push the change to the branch used by the PR. The PR updates show the pushed commit. If the commit resolved the issues that caused the conflict, and merge checks succeed, then the Merge button becomes available. You can now merge the PR.